弹框不在状态栏显示

This commit is contained in:
Sunny 2023-08-15 14:13:24 +08:00
parent b8999f3680
commit f800b16554

View File

@ -199,6 +199,7 @@ namespace Sunny.UI
public static bool ShowMessageDialog(this Form form, string message, string title, bool isShowCancel, UIStyle style)
{
UIMessageForm frm = new UIMessageForm();
frm.ShowInTaskbar = false;
frm.TopMost = true;
frm.ShowMessage(message, title, isShowCancel, style);
frm.ShowDialog();