彈框 在Avalonia中,使用系統預設的彈框

黄立明02發表於2024-09-02
宣告如下程式碼
[DllImport("user32.dll", CharSet = CharSet.Auto)]
 private static extern int MessageBox(IntPtr hWnd, string text, string caption, uint type);

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

MessageBox(IntPtr.Zero, "該程式已經在執行中,請勿重複執行。", "警告", 0);

相關文章