弹框 在Avalonia中,使用系统默认的弹框

声明如下代码
[DllImport("user32.dll", CharSet = CharSet.Auto)]
 private static extern int MessageBox(IntPtr hWnd, string text, string caption, uint type);

在需要弹框的地方使用,如下

MessageBox(IntPtr.Zero, "该程序已经在运行中,请勿重复运行。", "警告", 0);

 

posted @ 2024-09-02 11:19  黄立明02  阅读(98)  评论(0编辑  收藏  举报