- [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
[DEVEXPRESS] Hướng dẫn sử dụng HotTrackRow Helper trên Gridview
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 cách bật HotTrackRow trên GridView Của Devexpress C#, Winform.
[DEVEXPRESS] Enable HotTrackRow in GridView
Vậy Hot Track Row là gì?
Khi các bạn di chuyển vào từng dòng Row trên GridView thì nó sẽ format backgound cho bạn dễ nhìn là mình đang Focus vào dòng dữ liệu nào trên lưới.
Từ phiên bản Devexpress 20.1 trở lên, DevExpress đã tích hợp thêm cho chúng ta thuộc tính Enable HotTrackRow.
Giao diện demo sử dụng HottrackRow trên GridView:
Nếu bạn nào đang sử dụng, phiên bản 20.1 trở lên, các bạn chỉ cần Enable chức năng lên như hình bên dưới.
Từ GridView => Chọn RunDesigner
Tuy nhiên, nếu bạn nào sử dụng Devexpress phiên bản dưới 20.1 các bạn có thể sử dụng class HotTrackHelper.cs
ở dưới đây.
Để hiển thị Hot track khi chúng ta focus trên lưới.
Class HotTrackHelper.cs
using System;
using System.Collections.Generic;
using System.Text;
using DevExpress.XtraGrid.Views.Grid;
using DevExpress.XtraGrid.Views.Base;
using System.Windows.Forms;
using DevExpress.XtraGrid;
using DevExpress.XtraGrid.Views.Grid.ViewInfo;
using DevExpress.XtraEditors;
using System.Drawing;
namespace HotTrackGridView
{
class HotTrackHelper
{
GridView _view;
int hotRow = GridControl.InvalidRowHandle;
public HotTrackHelper(GridView view)
{
Attach(view);
}
void Attach(GridView view)
{
_view = view;
_view.CustomDrawCell += new RowCellCustomDrawEventHandler(_view_CustomDrawCell);
_view.MouseMove += new MouseEventHandler(_view_MouseMove);
}
void _view_MouseMove(object sender, MouseEventArgs e)
{
GridHitInfo hi = _view.CalcHitInfo(e.Location);
{
if (hotRow != hi.RowHandle)
{
_view.RefreshRow(hotRow);
hotRow = hi.RowHandle;
_view.RefreshRow(hotRow);
}
}
}
void _view_CustomDrawCell(object sender, RowCellCustomDrawEventArgs e)
{
if (hotRow != e.RowHandle && e.RowHandle != _view.FocusedRowHandle) return;
GridCellInfo CellInfo = e.Cell as GridCellInfo;
SimpleButton button = new SimpleButton();
_view.GridControl.FindForm().Controls.Add(button);
button.Bounds = CellInfo.RowInfo.Bounds;
Bitmap bm = new Bitmap(button.Width, button.Height);
button.DrawToBitmap(bm, new Rectangle(0, 0, bm.Width, bm.Height));
Rectangle rec = Rectangle.Intersect(CellInfo.RowInfo.Bounds, CellInfo.CellValueRect);
rec.Offset(-CellInfo.RowInfo.Bounds.X, -CellInfo.RowInfo.Bounds.Y);
e.Cache.Paint.DrawImage(e.Cache.Graphics, bm, CellInfo.Bounds);
_view.GridControl.FindForm().Controls.Remove(button);
}
void Detach(GridView view)
{
_view = null;
}
}
}
Và khi sử dụng chúng ta chỉ cần gọi vào như ở code FrmMain.cs
dưới đây:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using DevExpress.Skins;
using DevExpress.XtraEditors.Drawing;
using DevExpress.XtraEditors;
using DevExpress.XtraEditors.ViewInfo;
using DevExpress.Utils.Drawing;
using DevExpress.XtraGrid.Views.Grid.ViewInfo;
using DevExpress.XtraGrid;
using DevExpress.XtraGrid.Views.Grid;
namespace HotTrackGridView
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
gridControl2.DataSource = CreateTable(10);
HotTrackHelper helper = new HotTrackHelper(gridView2);
}
private static DataTable CreateTable(int RowCount)
{
DataTable tbl = new DataTable();
tbl.Columns.Add("Name", typeof(string));
tbl.Columns.Add("ID", typeof(int));
tbl.Columns.Add("Number", typeof(int));
tbl.Columns.Add("Date", typeof(DateTime));
for (int i = 0; i < RowCount; i++)
tbl.Rows.Add(new object[] { String.Format("Name{0}", i), i, 3 - i, DateTime.Now.AddDays(i) });
return tbl;
}
}
}
Kết quả chúng ta cũng sẽ được như hình bên dưới:
Thanks for watching!