- [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 Flyout Dialog trên lập trình C#, 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 sử dụng Flyout Dialog trên lập trình c#, Winform DevExpress.
[DEVEXPRESS] How to Using Flyout Dialog C#, Winform
Ở bài này, mình sẽ demo một ứng dụng hiển thị Form Login bằng cách sử dụng Flyout Dialog của Devexpress.
Giao diện login mình thiết kế như hình bên dưới:
Video step by step sử dụng Flyout Dialog C#:
Bạn nào thấy bài viết có ích, ủng hộ cho mình một sub đăng ký kênh nhé các bạn. <3
Đầu tiên, các bạn tạo cho mình một class với tên: VBFlyoutDialog.cs
using DevExpress.XtraBars.Docking2010.Customization;
using DevExpress.XtraBars.Docking2010.Views.WindowsUI;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace VBCustomFlyoutDialog
{
public class VBFlyoutDialog : FlyoutDialog
{
public VBFlyoutDialog(Form form, FlyoutAction action, Control userControl): base(form, action)
{
this.Properties.HeaderOffset = 0;
this.Properties.Alignment = System.Drawing.ContentAlignment.MiddleCenter;
this.Properties.Style = FlyoutStyle.Popup;
this.FlyoutControl = userControl;
}
public static DialogResult ShowFormPopup(Form form, FlyoutAction action, Control userControl)
{
var vbFlyout = new VBFlyoutDialog(form, action, userControl);
return vbFlyout.ShowDialog();
}
}
}
Tiếp đến, các bạn sẽ tạo một UserControl Form Login như hình bên dưới:
Ở usercontrol này, các bạn tạo cho mình 3 control gồm các thông tin: User Name, Password, is Remember.
Code uc_LoginForm.cs
:
using DevExpress.XtraEditors;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace VBCustomFlyoutDialog
{
public partial class uc_LoginForm : DevExpress.XtraEditors.XtraUserControl
{
public uc_LoginForm(Login login)
{
InitializeComponent();
txtUsername.DataBindings.Add("Text", login, "UserName");
txtPassword.DataBindings.Add("Text", login, "Password");
chkRemember.DataBindings.Add("Checked", login, "isRemember");
}
}
}
Tiếp đến các bạn, tạo một class Login.cs
namespace VBCustomFlyoutDialog
{
public class Login
{
public string UserName { get; set; }
public string Password { get; set; }
public bool isRemember { get; set; }
}
}
Và cuối cùng, mình sẽ thiết kế Form Main để gọi Dialog Form Login, khi đăng nhập các thông tin sẽ trả dữ liệu về cho Form Chính.
Ở đây, chúng ta sẽ sử dụng kỹ thuật DataBinding để lấy dữ liệu thông tin của Form Login Dialog.
Source code Form1.cs
:
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 VBCustomFlyoutDialog
{
public partial class Form1 : DevExpress.XtraEditors.XtraForm
{
public Form1()
{
InitializeComponent();
}
private void btnLogin_Click(object sender, EventArgs e)
{
var login = new Login();
var dlg = VBFlyoutDialog.ShowFormPopup(this, null, new uc_LoginForm(login));
if(dlg == DialogResult.OK)
{
lbl_username.Text = login.UserName;
lblPassword.Text = login.Password;
lblRemember.Text = login.isRemember.ToString();
}
}
}
}
Thanks for watching!