我有一个winform应用程序。输入所有字段时,有一个保存按钮。单击保存按钮时,会出现一个消息框,记录已成功保存。消息框有 2 个按钮“是”和“否”。如果是,则应保存记录并清除表单上的所有字段,如果单击否,则应清除表单上的所有字段而不保存记录。
问问题
40205 次
3 回答
22
MessageBox 类的 Show 方法返回一个 DialogResult:
DialogResult result = MessageBox.Show("text", "caption", MessageBoxButtons.YesNo);
if(result == DialogResult.Yes){
//yes...
}
else if(result == DialogResult.No){
//no...
}
于 2013-05-02T09:18:40.423 回答
3
有DialogResult
-enum 来处理这些事情(来自MSDN)
private void validateUserEntry5()
{
// Checks the value of the text.
if(serverName.Text.Length == 0)
{
// Initializes the variables to pass to the MessageBox.Show method.
string message = "You did not enter a server name. Cancel this operation?";
string caption = "No Server Name Specified";
MessageBoxButtons buttons = MessageBoxButtons.YesNo;
DialogResult result;
// Displays the MessageBox.
result = MessageBox.Show(this, message, caption, buttons);
if(result == DialogResult.Yes)
{
// Closes the parent form.
this.Close();
}
}
}
于 2013-05-02T09:17:15.717 回答
2
您可以为此使用DialogResult 枚举。
if(MessageBox.Show("Title","Message text",MessageBoxButtons.YesNo) == DialogResult.Yes)
{
//do something
}
于 2013-05-02T09:18:58.260 回答