- [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
Tạo form đăng nhập style Win8 với Flyout của DocumentManager
Trong bài viết này mình xin giới thiệu với các bạn thành phần Flyout trong control DocumentManager một trong những Control rất mạnh của DevExpress. Nội dung bài viết có giới hạn nên mình ko thể nói quá chi tiết mà mình chỉ giới thiệu các thành phần chủ yếu liên quan đến Flyout những vấn đề khác các bạn có gắng tìm hiểu chi tiết hơn. Dưới đây là các bước thực hiện:
Đầu tiên các bạn thiết kế 1 usercontrol như sau. (Usercontrol này dùng để hiển thị trên Flyout)
Trong phần code bạn khai báo 2 properties sau:
public string UserName { get { return txtUserName.Text; } }
public string Password { get { return txtPass.Text; } }
Trong Form chính bạn kéo và sử dụng control DocumentManager
Tiếp theo bạn chọn View là WindowsUIView. Tiếp theo là mở phần Run Designer
Trong phần Elements bạn Add new document và khai báo như sau
Đến phần Content Containers bạn tạo mới flyout1 và tileContainer1
Lần lượt khai báo cho flyout1 và tileContainer1 như sau
Sau khi đã khai báo như phía trên thì bạn sẽ thấy trong phần Layout có Navigation Tree như sau
Đã xong phần design tiếp theo là bạn khai báo để tạo 2 command là "Đăng nhập" và "Thoát"
class OkCommand : FlyoutCommand
{
public override string Text
{
get
{
return "Đăng nhập";
}
}
public override DialogResult Result
{
get
{
return DialogResult.OK;
}
}
}
class CancelCommand : FlyoutCommand
{
public override string Text
{
get
{
return "Thoát";
}
}
public override DialogResult Result
{
get
{
return DialogResult.Cancel;
}
}
}
Kế là các sự kiện sử dụng trong chương trình và add 2 command cho flyout1
public Form1()
{
InitializeComponent();
windowsUIView1.QueryControl += windowsUIView1_QueryControl;
windowsUIView1.FlyoutHidden += windowsUIView1_FlyoutHidden;
windowsUIView1.FlyoutHiding += windowsUIView1_FlyoutHiding;
flyCommand.Commands.Add(new OkCommand());
flyCommand.Commands.Add(new CancelCommand());
flyout1.Action = flyCommand;
}
FlyoutAction flyCommand = new FlyoutAction();
Và cuối cùng là viết xử lý cho những sự kiện của chương trình như sau:
void windowsUIView1_FlyoutHiding(object sender, DevExpress.XtraBars.Docking2010.Views.WindowsUI.FlyoutCancelEventArgs e)
{
FlyoutResultCancelEventArgs ea = e as FlyoutResultCancelEventArgs;
if (ea.Result == System.Windows.Forms.DialogResult.Cancel)
Application.Exit();
else
{
var activeFlyout = windowsUIView1.ActiveFlyoutContainer as Flyout;
if (activeFlyout != null && activeFlyout.Document != null)
{
e.Cancel = ea.Result == System.Windows.Forms.DialogResult.Cancel;
var ucFlyout = activeFlyout.Document.Control as ucLogin;
if (ucFlyout == null) return;
if (ucFlyout.UserName != "laptrinhvb.net" || ucFlyout.Password != "admin")
{
e.Cancel = true;
DevExpress.XtraEditors.XtraMessageBox.Show("Đăng nhập không thành công!", "Laptrinhvb.net", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
tileContainer1.Caption = ucFlyout.UserName;
}
}
}
void windowsUIView1_FlyoutHidden(object sender, DevExpress.XtraBars.Docking2010.Views.WindowsUI.FlyoutResultEventArgs e)
{
windowsUIView1.ActivateContainer(tileContainer1);
}
void windowsUIView1_QueryControl(object sender, DevExpress.XtraBars.Docking2010.Views.QueryControlEventArgs e)
{
e.Control = new ucLogin();
}
Giờ thì hãy F5 và thưởng thức thành quả. Chúc vui!