MessageBox.Show() 有21个重载
常用的弹窗提示框
1、一个参数,弹窗只有一个选项
2、三个参数,第一个参数是设置弹窗消息框中的文字内容;第二个参数是设置弹窗标题栏中显示的文本;第三个参数是指定消息框中显示哪些按钮
比如:
(李献策lxc)
那么如何知道用户是点击的“确定”还是“取消”呢?
MessageBox.Show() 返回一个DialogResult值
private void button1_Click(object sender, EventArgs e) { DialogResult dr = MessageBox.Show("我是小飞机!", "我会飞!", MessageBoxButtons.OKCancel); if (dr == DialogResult.OK) { button1.Text = "确定按钮"; } else if (dr == DialogResult.Cancel) { button1.Text = "取消了!"; } }
接收用户点击的按钮
时间: 2024-10-12 20:39:28