在Visual C#中创建一个简单的弹出框,您可以使用MessageBox类。以下是一个简单的示例代码:
using System;
using System.Windows.Forms;
namespace SimpleMessageBox
{
class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
MessageBox.Show("这是一个简单的弹出框!", "标题", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
}
在这个示例中,我们使用了System.Windows.Forms命名空间中的MessageBox类。MessageBox.Show()方法接受四个参数:
您可以根据需要调整这些参数以满足您的需求。
领取专属 10元无门槛券
手把手带您无忧上云