gpt4 book ai didi

c# - 使函数等待事件 C#

转载 作者:行者123 更新时间:2023-11-30 15:46:01 25 4
gpt4 key购买 nike

我有一个类可以创建一个带有多个按钮的表单实例。我在此类中有一个函数,用于等待用户单击其中一个按钮并根据按下的按钮返回不同的值。我已经阅读了一些关于为此使用匿名委托(delegate)的内容,但我不确定如何确定按下了哪个特定按钮。我最初的方法是创建一个将按钮编号作为参数的自定义事件,并将事件处理程序添加到我的类中,但我再次不确定一旦我进入委托(delegate)后我将如何让该函数返回任何内容。

有什么简单的方法可以做到这一点吗?

下午

最佳答案

假设使用 WinForms,您可以采用几种方法。您可以将每个按钮作为表单类的属性公开,并让创建表单的类订阅每个按钮的 Click 事件。例如,

在表单类中:

public class MyForm : Form 
{
// form initialization, etc, etc.

public Button Button1
{
get { return button1; }
}
}

在创建表单的类中:

public class MyClass
{
public Form CreateForm()
{
var form = new MyForm();
form.Button1.Click += HandleButton1Clicked;
return form;
}

private void HandleButton1Clicked(object sender, EventArgs e)
{
// do whatever you need to do when Button1 is clicked
}
}

或者,您可以将 ButtonClicked 事件添加到表单并确定以这种方式按下了哪个按钮。表单将订阅其每个按钮的 Click 事件,并以按钮作为发送者触发 ButtonClicked。

我可能会选择前者,因为它可以避免编写 if 语句来确定按下了哪个按钮。


编辑以适应评论中的工作流程:

在这种情况下,您可以让表单为您处理一些细节。例如,让表单记录按下了哪个按钮。如果您将表单显示为模态对话框,这将根据设计阻止创建表单的函数,直到它被关闭。

public class MyForm : Form 
{
// form initialization, etc, etc.
private Button button1;
private Button button2;

public MyForm()
{
InitializeComponent();
button1.Click += HandleButtonClicked;
button1.DialogResult = DialogResult.OK;
button2.Click += HandleButtonClicked;
button2.DialogResult = DialogResult.OK;
}

private void HandleButtonClicked(object sender, EventArgs e)
{
ButtonClicked = sender as Button;
}

public Button ButtonClicked
{
get; private set;
}
}

调用代码:

public class MyClass
{
public int GetValue()
{
var form = new MyForm();
if(form.ShowDialog() == DialogResult.OK) // this will block until form is closed
{
// return some value based on form.ButtonClicked
// adjust method's return type as necessary
}
else
{
// do something if the user closed the form without
// clicking on one of the buttons
}
}
}

请注意,两个按钮的 HandleButtonClicked 事件处理程序是相同的,因为表单只是存储单击了哪个按钮。

关于c# - 使函数等待事件 C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4637349/

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