vc中如何设置messagebox.show
时间: 2024-05-19 18:15:16 浏览: 153
VC 如何创建消息框
4星 · 用户满意度95%
在VC中,可以使用MessageBox.Show()方法来显示消息框。具体的代码如下:
MessageBox.Show("提示消息", "标题", MessageBoxButtons.OK, MessageBoxIcon.Information);
其中,第一个参数为提示消息,第二个参数为标题,MessageBoxButtons.OK表示只有一个确定按钮,MessageBoxIcon.Information表示消息框为信息图标。您也可以根据需要设置其他参数。
阅读全文