弹框 在Avalonia中,使用系统默认的弹框
声明如下代码
[DllImport("user32.dll", CharSet = CharSet.Auto)] private static extern int MessageBox(IntPtr hWnd, string text, string caption, uint type);
在需要弹框的地方使用,如下
MessageBox(IntPtr.Zero, "该程序已经在运行中,请勿重复运行。", "警告", 0);
声明如下代码
[DllImport("user32.dll", CharSet = CharSet.Auto)] private static extern int MessageBox(IntPtr hWnd, string text, string caption, uint type);
在需要弹框的地方使用,如下
MessageBox(IntPtr.Zero, "该程序已经在运行中,请勿重复运行。", "警告", 0);