- [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 thêm icon chênh lệch tăng giảm 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 format condition trên GridView Devexpress c# winform.
[DEVEXPRESS] How to Format Condition GridView Winform C#
Ví dụ: mình có một hình ảnh trong file excel ở dưới đây
Khi các bạn tính toán chênh lệch tăng giảm giữa các năm: Năm trước so sách với năm này.
Để tính chênh lệch các bạn tạo một column chênh lệch = năm này - năm trước
Nếu tăng thì mình sẻ hiển thị icon tăng màu xanh.
Nếu giảm thì sẻ hiển thị icon giảm màu đỏ.
Nếu không thay đổi thì icon ngang màu vàng.
Dưới đây là giao diện demo ứng dụng, mình build demo trên devexpress, winform:
Các icon này các bạn có thể thay đổi tùy ý, có thể tham khảo video mình hướng dẫn step by step ở bên dưới:
Full source code C#:
using DevExpress.XtraEditors;
using DevExpress.XtraGrid;
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 TangGiamIconGridView
{
public partial class Form1 : DevExpress.XtraEditors.XtraForm
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
var table = new DataTable();
table.Columns.Add("year2020", typeof(int));
table.Columns.Add("year2021", typeof(int));
table.Rows.Add(20, 50);
table.Rows.Add(1000, 50);
table.Rows.Add(200, 300);
table.Rows.Add(150, 150);
table.Rows.Add(15, 20);
table.Rows.Add(20, 14);
table.Rows.Add(34, 98);
table.Rows.Add(100, 34);
table.Rows.Add(80, 1150);
gridControl1.DataSource = table;
GridFormatRule gridFormatRule = new GridFormatRule();
FormatConditionRuleIconSet formatConditionRuleIconSet = new FormatConditionRuleIconSet();
FormatConditionIconSet iconSet = formatConditionRuleIconSet.IconSet = new FormatConditionIconSet();
FormatConditionIconSetIcon icon1 = new FormatConditionIconSetIcon();
FormatConditionIconSetIcon icon2 = new FormatConditionIconSetIcon();
FormatConditionIconSetIcon icon3 = new FormatConditionIconSetIcon();
icon1.PredefinedName = "Arrows3_1.png";
icon2.PredefinedName = "Triangles3_2.png";
icon3.PredefinedName = "Arrows3_3.png";
iconSet.ValueType = FormatConditionValueType.Automatic;
icon1.Value = 0;
icon1.ValueComparison = FormatConditionComparisonType.Greater;
icon2.Value = 0;
icon2.ValueComparison = FormatConditionComparisonType.GreaterOrEqual;
icon3.Value = Decimal.MinValue;
icon3.ValueComparison = FormatConditionComparisonType.GreaterOrEqual;
iconSet.Icons.Add(icon1);
iconSet.Icons.Add(icon2);
iconSet.Icons.Add(icon3);
gridFormatRule.Rule = formatConditionRuleIconSet;
gridFormatRule.Column = colTangGiam;
gridView1.FormatRules.Add(gridFormatRule);
}
}
}
Thanks for watching!