public static DialogResult ThongBao(this string message) { //return MessageBox.Show(message, "THAN MẠO KHÊ", MessageBoxButtons.OK, MessageBoxIcon.Information); var frm = new frmAlert() { mThongBao = new frmAlert.ThongBao { eTypeMessage = frmAlert.eTypeMessage.ThongBao, IsDialog = true, Message = message, } }; return(frm.ShowDialog()); }
public static DialogResult XacNhan(this string message, int SecondDisplay = 5) { //return MessageBox.Show(message, "XÁC NHẬN - THAN MẠO KHÊ", MessageBoxButtons.YesNo, MessageBoxIcon.Information); var frm = new frmAlert() { mThongBao = new frmAlert.ThongBao { eTypeMessage = frmAlert.eTypeMessage.XacNhan, IsDialog = false, Message = message, SecondDisplay = SecondDisplay } }; return(frm.ShowDialog()); }