在C#中,要自定義MessageBox樣式,可以使用Windows API函數(shù)MessageBoxCustom
。以下是一個簡單的示例,展示了如何使用此函數(shù)創(chuàng)建一個自定義樣式的MessageBox。
首先,確保已經(jīng)引用了System.Runtime.InteropServices
命名空間。
using System;
using System.Runtime.InteropServices;
接下來,定義一個名為MessageBoxCustom
的方法,該方法接受一個字符串參數(shù)作為消息內(nèi)容,并返回一個整數(shù)值表示MessageBox的按鈕類型。
public static int MessageBoxCustom(string message)
{
const int MB_OK = 0x00000000;
const int MB_OKCANCEL = 0x00000001;
const int MB_YESNOCANCEL = 0x00000002;
const int MB_ICONINFORMATION = 0x00000040;
const int MB_ICONWARNING = 0x00000030;
const int MB_ICONERROR = 0x00000010;
const int MB_USERICON = 0x00000080;
const int MB_TOPMOST = 0x00040000;
const int MB_SETFOREGROUND = 0x00000003;
const int MB_DEFAULTBUTTON = 0x00000000;
return MessageBox(IntPtr.Zero, message, "Custom MessageBox", MB_OK | MB_ICONINFORMATION | MB_TOPMOST);
}
在這個示例中,我們使用了MessageBox
函數(shù),并設(shè)置了MB_OK
、MB_ICONINFORMATION
和MB_TOPMOST
標(biāo)志。這些標(biāo)志分別表示消息框只有一個確定按鈕、顯示信息圖標(biāo)以及將消息框置于其他窗口之上。
要調(diào)用MessageBoxCustom
方法并顯示自定義樣式的MessageBox,可以使用以下代碼:
public static void Main(string[] args)
{
int result = MessageBoxCustom("This is a custom MessageBox.");
if (result == 1) // MB_OK
{
Console.WriteLine("User clicked OK.");
}
else if (result == 2) // MB_CANCEL
{
Console.WriteLine("User clicked Cancel.");
}
}
這段代碼將創(chuàng)建一個帶有確定按鈕、信息圖標(biāo)并置于其他窗口之上的自定義MessageBox。當(dāng)用戶點擊確定按鈕時,程序?qū)⑤敵觥癠ser clicked OK.”。如果用戶點擊取消按鈕,程序?qū)⑤敵觥癠ser clicked Cancel.”。