- [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 BreadCrumb Edit Control C#
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 sử dụng BreadCrumb Edit Control trong Devexpress C#.
Vậy BreadCrumb là gì?
Breadcrumb là một dạng thẻ điều hướng tập hợp nhiều liên kết (đường link) phân cấp, giúp cho người xem có thể biết được mình đang ở vị trí nào trên website. Breadcrumbs trong website thường được đặt ở vị trí đầu trang web, dưới banner chính, top headers và các thanh menu. Breadcrumb có cấu trúc như sau:
Trang chủ > Chuyên Mục (hoặc thẻ Tag) > Trang con
Trang chủ > Trang đã xem thứ nhất > Trang đã xem thứ hai > …
Breadcrumb các bạn thường thấy đa số được sử dụng trong thiết kế website, còn trong ứng dụng, các bạn dễ thấy nhất là đường dẫn thư mục của Windows Explorer.
Dưới đây là giao diện sử dụng Breadcrumb trong Devexpress C#:
Source code Breadcrumb Devexpress C#:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using DevExpress.Utils.Menu;
using DevExpress.XtraEditors;
using DevExpress.XtraEditors.Repository;
namespace FileNavigator {
public partial class Form1 : XtraForm {
public static readonly int MaxEntitiesCount = 80;
public Form1() {
InitializeComponent();
Initialize();
}
void myItem_Click(object sender, EventArgs e) {
throw new NotImplementedException();
}
void Properties_QueryPopUp(object sender, CancelEventArgs e) {
throw new NotImplementedException();
}
//Set the Breadcrumb Editor's initial path
void Initialize() {
breadCrumbEdit1.Path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
foreach (DriveInfo driveInfo in GetFixedDrives()) {
breadCrumbEdit1.Properties.History.Add(new BreadCrumbHistoryItem(driveInfo.RootDirectory.ToString()));
}
}
private void breadCrumbEdit1_Properties_NewNodeAdding(object sender, DevExpress.XtraEditors.BreadCrumbNewNodeAddingEventArgs e) {
e.Node.PopulateOnDemand = true;
}
//Check whether or not the target path exists
private void breadCrumbEdit1_Properties_ValidatePath(object sender, DevExpress.XtraEditors.BreadCrumbValidatePathEventArgs e) {
if (!Directory.Exists(e.Path)) {
e.ValidationResult = DevExpress.XtraEditors.BreadCrumbValidatePathResult.Cancel;
return;
}
e.ValidationResult = DevExpress.XtraEditors.BreadCrumbValidatePathResult.CreateNodes;
}
private void breadCrumbEdit1_Properties_QueryChildNodes(object sender, DevExpress.XtraEditors.BreadCrumbQueryChildNodesEventArgs e) {
//Add custom shortcuts to the 'Root' node
if (string.Equals(e.Node.Caption, "Root", StringComparison.Ordinal)) {
InitBreadCrumbRootNode(e.Node);
return;
}
//Add local discs shortcuts to the 'Root' node
if (string.Equals(e.Node.Caption, "Computer", StringComparison.Ordinal)) {
InitBreadCrumbComputerNode(e.Node);
return;
}
//Populate dynamic nodes
string dir = e.Node.Path;
if (!Directory.Exists(dir))
return;
string[] subDirs = GetSubFolders(dir);
for (int i = 0; i < subDirs.Length; i++) {
e.Node.ChildNodes.Add(CreateNode(subDirs[i]));
}
}
void InitBreadCrumbRootNode(BreadCrumbNode node) {
node.ChildNodes.Add(new BreadCrumbNode("Desktop", Environment.GetFolderPath(Environment.SpecialFolder.Desktop)));
node.ChildNodes.Add(new BreadCrumbNode("Windows", Environment.GetFolderPath(Environment.SpecialFolder.Windows)));
node.ChildNodes.Add(new BreadCrumbNode("Program Files", Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles)));
}
void InitBreadCrumbComputerNode(BreadCrumbNode node) {
foreach (DriveInfo driveInfo in GetFixedDrives()) {
node.ChildNodes.Add(new BreadCrumbNode(driveInfo.Name, driveInfo.RootDirectory));
}
}
protected BreadCrumbNode CreateNode(string path) {
string folderName = new DirectoryInfo(path).Name;
return new BreadCrumbNode(folderName, folderName, true);
}
//Get the local drives list
public static IEnumerable<DriveInfo> GetFixedDrives() {
foreach (DriveInfo driveInfo in DriveInfo.GetDrives()) {
if (driveInfo.DriveType != DriveType.Fixed) continue;
yield return driveInfo;
}
}
//Get all subfolders contained within the target directory
public static string[] GetSubFolders(string rootDir) {
string[] subDirs = GetSubDirs(rootDir);
if (subDirs == null)
return new string[0];
if (subDirs.Length <= MaxEntitiesCount)
return subDirs;
string[] res = new string[MaxEntitiesCount];
Array.Copy(subDirs, res, res.Length);
return res;
}
//Get the names of the subdirectories
public static string[] GetSubDirs(string dir) {
string[] subDirs = null;
try {
subDirs = Directory.GetDirectories(dir, "*", SearchOption.TopDirectoryOnly);
}
catch { }
return subDirs;
}
private void breadCrumbEdit1_PathChanged(object sender, BreadCrumbPathChangedEventArgs e) {
label2.Text = breadCrumbEdit1.Path;
}
private void breadCrumbEdit1_Properties_PathChanged(object sender, BreadCrumbPathChangedEventArgs e) {
}
}
}
Thanks for watching!