- [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
[DEVEPXRESS] Hướng dẫn hiển thị tiêu đề caption trên hình ảnh sử dụng PictureEdit
Xin chào các bạn, bài viết hôm nay mình sẻ tiếp tục hướng dẫn các bạn thêm tiêu đề ghi chú hình ảnh trên PictureEdit Devexpress C#, winform.
[DEVEXPRESS] How to Display Caption in PictureEdit C#
Trên PictureEdit của Devexpress có chức năng cho phép chúng ta dễ dàng hiển thị ghi chú caption của hình ảnh một cách dễ dàng.
Giao diện demo hình ảnh CR7 dưới đây:
Để thêm chữ chú thích Cristiano Ronaldo CR7, các bạn chỉ cần thêm code phần Caption ở Property
của PictureEdit.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace CaptionInPictureEdit
{
public partial class Form1 : DevExpress.XtraEditors.XtraForm
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
pictureEdit1.LoadAsync("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ1NUlTK_8uVl94yTQ3hs0PTKOOC5EUoyc4cA&usqp=CAU");
pictureEdit1.Properties.Caption.Appearance.BackColor = Color.FromArgb(150, Color.Black);
pictureEdit1.Properties.Caption.Appearance.ForeColor = Color.White;
pictureEdit1.Properties.Caption.Text = $"Cristiano <color=red>Ronaldo CR7</color>";
pictureEdit1.Properties.Caption.Appearance.Font = new Font("Tahoma", 18, FontStyle.Bold);
}
}
}
Để ghi chú này, các bạn có thể dễ dàng chỉnh sửa:
- Font chữ
- Màu nền background
- Màu chữ
- Có thể sử dụng HTML code trên caption này nhé.
Thanks for watching!