MessageBox 所有按钮 图标样式

来源:互联网 发布:如何学数据库管理系统 编辑:程序博客网 时间:2024/05/01 20:58

对话框的名称是图标名称(MessageBoxIcon)——内容是按钮名称(MessageBoxButtons)


 MessageBox.Show(String, String, MessageBoxButtons.YesNo, MessageBoxIcon.Information);

1 0