NEWS

[DEVEPXRESS] Hướng dẫn hiển thị tiêu đề caption trên hình ảnh sử dụng PictureEdit

[DEVEPXRESS] Hướng dẫn hiển thị tiêu đề caption trên hình ảnh sử dụng PictureEdit
Đăng bởi: Thảo Meo - Lượt xem: 2976 17:15:42, 20/09/2021C#   In bài viết

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:

caption_pictureedit_devexpress

Để 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:

  1. Font chữ
  2. Màu nền background
  3. Màu chữ
  4. Có thể sử dụng HTML code trên caption này nhé.

Thanks for watching!

DOWNLOAD SOURCE

THÔNG TIN TÁC GIẢ

BÀI VIẾT LIÊN QUAN

[DEVEPXRESS] Hướng dẫn hiển thị tiêu đề caption trên hình ảnh sử dụng PictureEdit
Đăng bởi: Thảo Meo - Lượt xem: 2976 17:15:42, 20/09/2021C#   In bài viết

CÁC BÀI CÙNG CHỦ ĐỀ

Đọc tiếp
.