- [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 thiết kế Form Setting Tùy chọn trong Winform
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 thiết kế và tạo form setting tùy chọn trong lập trình C# sử dụng TreeView và Load usercontrol Dynamic.
[DEVEPRESS] DESIGN SETTING FORM C#
Trong lập trình ứng dụng, các bạn thường thấy sẽ có một form để chứa các thông tin tham số của hệ thống.
Ví dụ: ứng dụng lập trình Visual Studio
Các bạn vào Tools => Options => sẽ xuất hiện hộp thoại cho các bạn cấu hình các thông tin chung của Editor: font, color, theme, wordwrap, num Line...
Các bạn thấy hình trên sẽ có hai Panel:
Một panel bên trái chức TreeView chứa các danh sách menu
và một panel bên phải để load các usercontrol tùy chỉnh vào theo treeview menu bên trái.
Dưới đây là giao diện demo Setting Form C#:
Source code chương trình C#:
using OptionsDemoTree.UserControl;
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 OptionsDemoTree
{
public partial class Form1 : DevExpress.XtraEditors.XtraForm
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
treeList1.DataSource = InitData();
treeList1.ParentFieldName = "ParentID";
treeList1.KeyFieldName = "ID";
treeList1.TreeViewFieldName = "Name";
treeList1.ExpandAll();
}
public DataTable InitData()
{
DataTable table = new DataTable();
table.Columns.Add("ParentID", typeof(int));
table.Columns.Add("Code", typeof(string));
table.Columns.Add("Name", typeof(string));
table.Columns.Add("ID", typeof(int));
table.Columns.Add("Image_Index", typeof(int));
table.Rows.Add(0,"NS", "Nhân Sự", 1, 0);
table.Rows.Add(1,"NC", "Ngày công", 4, 3);
table.Rows.Add(2,"TC", "Tăng ca", 5, 3);
table.Rows.Add(1,"NNP", "Nghĩ phép năm", 6, 3);
table.Rows.Add(0,"KT", "Kế Toán", 2, 1);
table.Rows.Add(2,"NHT", "Năm hoạch toán", 7, 3);
table.Rows.Add(2,"DK", "Định khoản", 8, 3);
table.Rows.Add(0,"CDC", "Cài đặt chung", 3, 2);
return table;
}
private void treeList1_AfterFocusNode(object sender, DevExpress.XtraTreeList.NodeEventArgs e)
{
var dataRow = treeList1.GetDataRow(e.Node.Id);
var codeName = dataRow.ItemArray[1] + "";
if(codeName == "NNP")
{
if (!panMain.Controls.Contains(uControl2.Instance))
{
panMain.Controls.Add(uControl2.Instance);
uControl2.Instance.Dock = DockStyle.Fill;
uControl2.Instance.BringToFront();
}
else
uControl2.Instance.BringToFront();
}else if(codeName == "NC")
{
if (!panMain.Controls.Contains(uControl3.Instance))
{
panMain.Controls.Add(uControl3.Instance);
uControl3.Instance.Dock = DockStyle.Fill;
uControl3.Instance.BringToFront();
}
else
uControl3.Instance.BringToFront();
}
}
private void treeList1_GetStateImage(object sender, DevExpress.XtraTreeList.GetStateImageEventArgs e)
{
try
{
int index = int.Parse(e.Node.GetValue("Image_Index").ToString());
if (index >= 0)
{
e.NodeImageIndex = index;
}
}
catch (Exception) { }
}
}
}
Thanks for watching!