- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[C#] Hiệu ứng Text Effect Console trong Winform
Xin chào các bạn, bài viết hôm nay mình sẽ demo cho các bạn Text Effect Console ASCII trong lập trình C# winform.
[C#] Text Effect Console Winform
Thường các bạn hay nhìn thấy các ứng dụng Crack, khi chạy giao diện Console thì thường có chạy những hiệu ứng Text Effect để show tên phần mềm hoặc tác giả.
Giao diện demo ứng dụng Text Effect Console Winform.
Để chuyển đổi Convert Text sang mã ASCII, các bạn truy cập vào đường dẫn bên dưới để chuyển đổi.
http://patorjk.com/software/taag/#p=display&f=Doom&t=VB.NET
Nếu các bạn muốn convert hình ảnh sang mã ASCII, các bạn có thể đọc thêm bài viết ở đây:
Tiếp theo, các bạn tạo cho mình một class EText.cs
với nội dung như sau:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TextEffectConsole
{
class EText
{
int x, X, y, index, k, l;
string s;
ConsoleColor[] cl;
ConsoleColor cl1, cl2;
Random r;
int iColor, nColor;
public EText(string s, int x, int y)
{
this.x = x;
this.y = y;
X = x;
k = 0;
this.s = s;
l = s.Length;
index = l - 1;
cl = new ConsoleColor[] { ConsoleColor.Magenta, ConsoleColor.Yellow, ConsoleColor.Red, ConsoleColor.White, ConsoleColor.Black, ConsoleColor.Green };
nColor = cl.Length;
cl1 = ConsoleColor.Black;
cl2 = ConsoleColor.Green;
r = new Random();
iColor = 0;
}
public void ve()
{
Console.SetCursorPosition(X, y);
for (int i = k; i < l; i++)
{
Console.ForegroundColor = cl1;
if (i == index)
{
Console.ForegroundColor = cl2;
}
Console.Write(s[i]);
}
if (index == k)
{
k++;
X++;
index = l;
}
if (k == l - 1)
{
k = 0;
X = x;
cl1 = cl2;
cl2 = cl[iColor];
iColor++;
if (iColor == nColor)
{
iColor = 0;
}
}
index--;
}
}
}
Và tiếp theo là source code của file program.cs
C#:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TextEffectConsole
{
class Program
{
static void Main(string[] args)
{
Console.CursorVisible = false;
string[] str = new string[]
{ @"_ _______ _ _ _____ _____",
@"| | | | ___ | | || ___|_ _|",
@"| | | | |_/ /| | || |__ | |",
@"| | | | ___ | . ` || __| | |",
@" \_/ / |_/ /| | || |___ | |",
@" \___/\____(_)_| \_/\____/ \_/ " };
int n = str.Length;
EText[] ET = new EText[n];
int x, y;
x = 15;
y = 8;
for (int i = 0; i < n; i++)
{
ET[i] = new EText(str[i], x, y + i);
}
while (true)
{
while (true)
{
foreach (EText et in ET)
{
et.ve();
}
}
}
}
}
}
HAVE FUN :)