- [DEVEXPRESS] Hỗ trợ tìm kiếm highlight không dấu và không khoảng cách trên Gridview Filter
- [C#] Chia sẻ source code phần mềm Image Downloader tải hàng loạt hình ảnh từ danh sách link url
- [C#] Chụp hình và quay video từ camera trên winform
- [C#] Chia sẽ full source code tách file Pdf thành nhiều file với các tùy chọn
- Giới thiệu về Stock Tracker Widget - Công cụ theo dõi cổ phiếu và cảnh báo giá tăng giảm bằng C# và WPF
- [VB.NET] Chia sẻ công cụ nhập số tiền tự động định dạng tiền tệ Việt Nam
- [VB.NET] Hướng dẫn fill dữ liệu từ winform vào Microsoft word
- [VB.NET] Hướng dẫn chọn nhiều dòng trên Datagridview
- 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
- [C#] Hướng dẫn download file từ Minio Server Winform
[DEVEXPRESS] Hướng dẫn custom image group panel GridView
Xin chào các bạn, bài viết hôm nay mình sẽ chia sẽ cách giúp các bạn custom image trên group panel của GridControl Devexpress C#.
[DEVEXPRESS] Custom Image Group Panel GridView C#
Dưới đây là giao diện demo ứng dụng bằng ngôn ngữ C#:

Các bạn sẽ viết trong sự kiện CustomDrawGroupPanel của GridView Devexpress
Source code Devexpress C#:
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 ImageGroupGridView
{
    public partial class Form1 : DevExpress.XtraEditors.XtraForm
    {
        public Form1()
        {
            InitializeComponent();
        }
        Image groupPanelImage;
        private void gridView1_CustomDrawGroupPanel(object sender, DevExpress.XtraGrid.Views.Base.CustomDrawEventArgs e)
        {           
            Color color1 = Color.FromArgb(244, 132, 38);
            Brush brush = e.Cache.GetGradientBrush(e.Bounds, color1, Color.Bisque,
              System.Drawing.Drawing2D.LinearGradientMode.Horizontal);           
            e.Cache.FillRectangle(brush, e.Bounds);            
            Rectangle r = new Rectangle(e.Bounds.X + e.Bounds.Width - groupPanelImage.Size.Width - 5,
              e.Bounds.Y + (e.Bounds.Height - groupPanelImage.Size.Height) / 2, groupPanelImage.Width, groupPanelImage.Height);
            e.Cache.DrawImageUnscaled(groupPanelImage, r);
            e.Handled = true;
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            groupPanelImage = Image.FromFile(@"logo.png");
            gridView1.Appearance.GroupPanel.ForeColor = Color.Black;
        }
    }
}
Thanks for watching!

![[DEVEXPRESS] Hướng dẫn custom image group panel GridView](https://laptrinhvb.net/uploads/users/9a8cb514e4428e85fb4ca07588e9103f.png)

![[DEVEPXRESS] Hướng dẫn hiển thị tiêu đề caption trên hình ảnh sử dụng PictureEdit](https://laptrinhvb.net/uploads/source/devexpress/caption_pictureedit_devexpress.png)
![[DEVEXPRESS] Tạo month picker trên DateEdit Winform C#](https://laptrinhvb.net/uploads/source/DATABASE/month_picker_thumb.png)
![[DEVEXPRESS] Hướng dẫn sử dụng Calendar Control và cho vào PopupEdit](https://laptrinhvb.net/uploads/source/devexpress/custom_calendar_thumb.png)
![[DEVEXPRESS] Hướng dẫn sử dụng BreadCrumb Edit Control C#](https://laptrinhvb.net/uploads/source/devexpress/bread_crumb_devexpress_thumb.jpg)
![[DEVEXPRESS] Hướng dẫn Validate Form sử dụng adornerUIManager và  DataAnnotations C#](https://laptrinhvb.net/uploads/source/csharp/validateForm_thumb.jpg)
![[DEVEXPRESS] Hỗ trợ tìm kiếm highlight không dấu và không khoảng cách trên Gridview Filter](https://laptrinhvb.net/uploads/source/devexpress/tim-kiem-khong-dau-gridview-devexpress.png)
![[DEVEXPRESS] Hướng dẫn sử dụng công cụ WindowsUI Button Panel](https://laptrinhvb.net/uploads/source/image_baiviet/89beb6fa5e9dfb113ce299b8fc6f371a.jpg)
![[DEVEXPRESS] Tìm dữ liệu trùng lắp Duplicate và tô màu trên Gridview](https://laptrinhvb.net/uploads/source/devexpress/find_duplicate_value_gridview.gif)
![[DEVEXPRESS] Hướng dẫn Drag drop di chuyển dữ liệu giữa hai Gridview Winform](https://laptrinhvb.net/uploads/source/vbnet/drapdrop_gridview_csharp_thumb.png)
![[DEVEXPRESS] Hướng dẫn show Form chọn dữ liệu từ Form2 trả về Form1 trên C#](https://laptrinhvb.net/uploads/source/devexpress/0.jpg)
![[DEVEXPRESS] Hướng dẫn ẩn và hiển thị cột column trên Gridview Winform](https://laptrinhvb.net/uploads/source/devexpress/HIDE_SHOW_GRIDVIEW.jpg)
![[DEVEXPRESS] Chia sẽ phần mềm xem hình ảnh Photo Viewer C#](https://laptrinhvb.net/uploads/source/devexpress/photo_viewer_thumb.png)

![[Winform - DevExpress] User Control inherit GridControl DevExpress](https://laptrinhvb.net/uploads/source/devexpress/GridControlLaptrinhVB.png)
![[DEVEXPRESS] Hướng dẫn đổi tên caption tiêu đề header column trên GridView](https://laptrinhvb.net/uploads/source/vbnet/rename_column_header_gridview.jpg)
![[DEVEXPRESS] Thiết kế Dropdown ButtonBarItem trên Form Ribbon](https://laptrinhvb.net/uploads/source/vbnet/dropdown_button_devexpress_thumb.png)
![[DEVEXPRESS] Sử dụng Fluent UI Scrollbar trên Gridview](https://laptrinhvb.net/uploads/source/devexpress/18-2-winforms-fluent-scroolbar-hd.gif)
![[DEVEXPRESS] Hướng dẫn thay đổi giao diện Palette trên Skin The Bezier](https://laptrinhvb.net/uploads/source/csharp/change_skin_theme.jpg)
![[DEVEXPRESS] Hướng dẫn bật tính năng Scroll Pixcel in Touch trên GridView](https://laptrinhvb.net/uploads/source/vbnet/scroll_pixel_smooth_devexpress.gif)
![[DEVEXPRESS] Thiết lập mặc định chế độ lọc contain string trên Gridview C#](https://laptrinhvb.net/uploads/source/devexpress/contain_filter_devexpress.png)
![[DEVEXPRESS] Auto Demo Trainning ứng dụng  Sử dụng thư viện Tutorials](https://laptrinhvb.net/uploads/source/devexpress/auto_action_app.gif)
![[DEVEXPRESS] Hướng dẫn sử dụng thư viện NHunspell để kiểm tra chính tả tiếng việt trong TextBox Winform](https://laptrinhvb.net/uploads/source/devexpress/spelling_checker_csharp_thumb.png)
![[DEVEXPRESS] Hướng dẫn custom màu chữ, nền, disabled CheckedComboboxEdit C#](https://laptrinhvb.net/uploads/source/devexpress/check_edit_combobox_thumb.png)
![[DEVEXPRESS] Hướng dẫn thêm icon chênh lệch tăng giảm trên gridview](https://laptrinhvb.net/uploads/source/devexpress/Format_condition_thumb.png)
![[DEVEXPRESS] Hướng dẫn Custom Summary in Footer trong Gridview C#](https://laptrinhvb.net/uploads/source/devexpress/custom_summary_thumb.png)
