gpt4 book ai didi

c# - 正确使用 DialogResult

转载 作者:IT王子 更新时间:2023-10-29 04:16:58 26 4
gpt4 key购买 nike

在回答我最近的一个问题 (Here) 时,Hans Passant 说我应该设置 DialogResult 来关闭我的表单而不是 form.Close() 虽然我似乎无法找出原因?

如果我没看错的话,MSDN 文档指出这样做只会隐藏表单,而不是像我认为 .Close() 那样正确处理它?<​​/p>

Extract来自文档。

The Close method is not automatically called when the user clicks the Close button of a dialog box or sets the value of the DialogResult property. Instead, the form is hidden and can be shown again without creating a new instance of the dialog box. Because of this behavior, you must call the Dispose method of the form when the form is no longer needed by your application.

另一方面,微软创造了一个support page说明如何使用 DialogResult 属性,并在“验证它是否有效”部分说明单击它会关闭表单。

所以我的问题有两个,我应该继续使用 Close 还是 DialogResult?并在对话框结果中关闭或隐藏表单。从我在下面制作的代码(一个带有两个按钮的简单表单)来看,它似乎确实被隐藏了,只是因为 this.Close() 上的断点被击中了..(用 this .Close() 注释掉,窗体还是消失了,就是不知道有没有隐藏)

    public Form1()
{
InitializeComponent();
button1.Click += (s, e) =>
{
//I edited my question to include using
using(Form1 form = new Form1())
{
form.ShowDialog();
}

};
button2.Click += (s, e) =>
{
this.DialogResult = DialogResult.OK;
this.Close();
};
}

最佳答案

当您使用 ShowDialog 打开模式对话框时,调用代码将被阻止,直到调用的窗体关闭或隐藏。如果你想读取被调用表单的一些公共(public)属性并想根据点击确定或取消按钮做一些事情(例如将数据保存到数据库或文件),那么你需要知道用户是否想要做或不做这个 Action 。 ShowDialog() 方法返回的 DialogResult 允许您采取适当的操作...

比如

using (Form1 form = new Form1())
{
DialogResult dr = form.ShowDialog();
if(dr == DialogResult.OK)
{
string custName = form.CustomerName;
SaveToFile(custName);
}

}

要添加到此答案中的一件重要事情是 DialogResult 属性同时存在于 Form 类和 Button 类中。将按钮的 DialogResult 属性(通过代码或设计器)设置为不同于 DialogResult.None 的值是激活表单重要行为的关键。如果您单击具有该属性集的按钮,那么表单引擎会将 Buttons 属性的值传输到表单引擎并触发表单的自动关闭以重新激活调用者代码。如果单击按钮时有事件处理程序,则可以运行代码来验证表单的输入并强制表单保持打开状态,覆盖表单的 DialogResult 属性,将其设置回 DialogResult.None

例如,在模态显示的表单中,您可以:

// Event handler for the OK button set with DialogResult.OK
public void cmdOK_Click(object sender, EventArgs e)
{
// Your code that checks the form data and
// eventually display an error message.
bool isFormDataValid = ValidateFormData();

// If data is not valid force the form to stay open
if(!isFormDataValid)
this.DialogResult = DialogResult.None;
}

关于c# - 正确使用 DialogResult,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16846573/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com