宣告如下程式碼
[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);