在C#中,要自定义MessageBox样式,可以使用Windows API函数MessageBoxCustom
。以下是一个简单的示例,展示了如何使用此函数创建一个自定义样式的MessageBox。
首先,确保已经引用了System.Runtime.InteropServices
命名空间。
using System;
using System.Runtime.InteropServices;
接下来,定义一个名为MessageBoxCustom
的方法,该方法接受一个字符串参数作为消息内容,并返回一个整数值表示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
函数,并设置了MB_OK
、MB_ICONINFORMATION
和MB_TOPMOST
标志。这些标志分别表示消息框只有一个确定按钮、显示信息图标以及将消息框置于其他窗口之上。
要调用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.");
}
}
这段代码将创建一个带有确定按钮、信息图标并置于其他窗口之上的自定义MessageBox。当用户点击确定按钮时,程序将输出“User clicked OK.”。如果用户点击取消按钮,程序将输出“User clicked Cancel.”。