gpt4 book ai didi

c# - 使用 DialogResult.Cancel 的优势

转载 作者:行者123 更新时间:2023-11-30 13:57:40 24 4
gpt4 key购买 nike

使用的好处是什么:

DialogResult.Cancel

过度使用:

this.Close()

是否只是为了让您能够确定用户选择了Cancel

最佳答案

您可以将它的值(value)用于这种目的

var result = form.ShowDialog();
if (result == DialogResult.OK)
{

}
else if (result == DialogResult.Cancel)
{
//perform soem operation
}

所以如果你想对对话框的结果执行一些操作,你可以使用它。

注意:

对话框上的 ok 和 cancel 操作都会关闭您的对话框,通过捕获 ok 和 cancel 值,您可以执行上面示例中给出的额外任务。

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

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