- [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#] Hướng dẫn tạo hiệu ứng Decode Text Effect Label
Xin chào các bạn, bài viết hôm nay mình sẽ chia sẽ cho các bạn một component Decode Text Label C#, giúp các bạn tạo hiệu ứng như các website đã bị hacker.
Trong đoạn code các bạn cần tạo một component, thừa kế từ lớp Label để chúng ta override lớp này lại.
Sử dụng Timer, các hàm substring để tạo hiệu ứng cho Text Label.
Dưới đây, là giao diện demo ứng dụng Decode Text Label Effect C#:
Ở hình trên, các bạn nhìn thấy trông rất cool phải không các bạn.
Đầu tiên, các bạn tạo cho mình một class component DecodeLabel.cs
Source code C#:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace DecodeTextEffect
{
public partial class DecodeLabel : Label
{
private readonly Timer _timerAnimate = new Timer();
private TextDecodeEffect _decodeEffect;
private bool _showing;
private int _initGenCount;
public int Interval
{
get { return _timerAnimate.Interval; }
set { _timerAnimate.Interval = value; }
}
public DecodeLabel()
{
_timerAnimate.Interval = 100;
_timerAnimate.Tick += _timerAnimate_Tick;
}
public void Animate(bool show, string text, int initGenCount)
{
_initGenCount = initGenCount;
_decodeEffect = new TextDecodeEffect(text) { TextVisible = !show };
Text = _decodeEffect.Peek(DecodeMode.None);
_showing = show;
_timerAnimate.Start();
}
private void _timerAnimate_Tick(object sender, EventArgs e)
{
if(_initGenCount != 0)
{
Text = _decodeEffect.GenerateNumberRange(Text.Length);
_initGenCount--;
return;
}
var decodeMode = _showing ? DecodeMode.Show : DecodeMode.Hide;
var text = _decodeEffect.Peek(decodeMode);
if(text == null)
{
_timerAnimate.Stop();
}
else
{
Text = text;
}
}
}
public enum DecodeMode
{
None,
Show,
Numbers,
Hide
}
class TextDecodeEffect
{
private int _visiableCount;
private readonly Random _random = new Random();
public bool TextVisible
{
get { return _visiableCount == OriginalText.Length; }
set { _visiableCount = value ? OriginalText.Length : 0; }
}
public string OriginalText { get; private set; }
public TextDecodeEffect(string text)
{
OriginalText = text;
}
public string Peek(DecodeMode mode)
{
switch (mode)
{
case DecodeMode.Numbers:
return GenerateNumberRange(OriginalText.Length);
case DecodeMode.Hide:
if (_visiableCount == 0) return null;
_visiableCount--;
break;
case DecodeMode.Show:
if(_visiableCount == OriginalText.Length)
{
return null;
}
_visiableCount++;
break;
}
var text = GenerateNumberRange(OriginalText.Length - _visiableCount);
text += OriginalText.Substring(OriginalText.Length - _visiableCount, _visiableCount);
return text;
}
public string GenerateNumberRange(int count)
{
var SB = new StringBuilder();
for (int i = 0; i < count; i++)
SB.Append(_random.Next(0, 10));
return SB.ToString();
}
}
}
Sau khi các bạn tạo xong class này, các bạn build ứng dụng lên, và sau đó, các bạn nhìn vào thanh Toolbox sẽ có một component mới với tên Decodelabel, từ thanh công cụ, các bạn kéo
component này vào winform để sử dụng.
Sau khi các bạn kéo component này ra, các bạn set cho nó các thuộc tính sau:
AutoSize = false
TextAlign = MiddleCenter
Set font chữ cho nó size khoảng 35.
Background = Black
Forecolor = Lime
Các bạn, có thể download source của mình để sử dụng font chữ OCR Extend, font chữ như ứng dụng mình demo ở trên.
Trong form1.cs, các bạn viết sự kiện khi click vào Decode Label thì chạy hiệu ứng.
Source code C#:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace DecodeTextEffect
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void decodeLabel1_Click(object sender, EventArgs e)
{
decodeLabel1.Animate(true, "Website is hacked by laptrinhvb.net!", 5);
}
}
}
HAVE FUN :)