- GIỚI THIỆU TOOL: DUAL MESSENGER TOOLKIT
- [PHẦN MỀM] Giới thiệu Phần mềm Gmap Extractor
- Hướng Dẫn Đăng Nhập Nhiều Tài Khoản Zalo Trên Máy Tính Cực Kỳ Đơn Giản
- [C#] Chia sẻ source code phần mềm đếm số trang tập tin file PDF
- [C#] Cách Sử Dụng DeviceId trong C# Để Tạo Khóa Cho Ứng Dụng
- [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#] Hướng dẫn thêm text vào hình ảnh icon winform
Xin chào các bạn, bài viết hôm nay mình sẽ hướng dẫn các bạn cách vẽ chữ số lên Icon có sẵn trong lập trình C#, Winform.
Mình sẽ viết một ứng dụng nhỏ đemo các bạn có thể áp dụng khi download file, hay làm gì về progress thì có thể thay đổi giá trị bằng Icon để hiển thị như demo mình dưới đây.
Hoặc nếu các bạn có viết ứng dụng giống như đo nhiệt độ hay phần trăm làm việc CPU hay Ram bạn cũng có thể cho nó hiển thị ở phần notifyIcon C#.
Để nhìn trực quan một các dễ dàng.
Full source code Draw Text to Icon C#, Winform:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CreateIconFromText
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Task.Run(() => {
for (int i = 0; i <= 99; i++)
{
var icon = GetIcon(i.ToString());
BeginInvoke(new Action(() => {
this.Icon = icon;
notifyIcon1.Icon = icon;
}));
Thread.Sleep(50);
}
});
}
public static Icon GetIcon(string text)
{
Bitmap bitmap = new Bitmap(32, 32);
var sf = new StringFormat();
sf.Alignment = StringAlignment.Center;
sf.LineAlignment = StringAlignment.Center;
Icon icon = new Icon(@"Custom-Icon-Design-Pretty-Office-9-Square.ico");
Font drawFont = new System.Drawing.Font("Tahoma", 11, FontStyle.Bold);
SolidBrush drawBrush = new System.Drawing.SolidBrush(System.Drawing.Color.White);
Graphics graphics = System.Drawing.Graphics.FromImage(bitmap);
graphics.DrawIcon(icon, 0, 0);
graphics.DrawString(text, drawFont, drawBrush, new Rectangle(0, 0, bitmap.Width, bitmap.Height), sf);
bitmap.Save("icon.ico", System.Drawing.Imaging.ImageFormat.Icon);
Icon createdIcon = Icon.FromHandle(bitmap.GetHicon());
drawFont.Dispose();
drawBrush.Dispose();
graphics.Dispose();
bitmap.Dispose();
return createdIcon;
}
private void Form1_Load(object sender, EventArgs e)
{
var icon = GetIcon("VB");
this.Icon = icon;
notifyIcon1.Icon = this.Icon;
notifyIcon1.Visible = true;
}
}
}
Thanks for watching!