gpt4 book ai didi

c# - 简化winforms代码跨线程调用

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

我正在开发一个跨线程应用程序,它在 Invoke 中有一些方法:

if (this.InvokeRequired)
{
this.Invoke((Action)(() =>
{
pbTotalProgress.Value = progress;
labe1.Text="SomeText";
}));
}
else
{
pbTotalProgress.Value = progress;
labe1.Text="SomeText";
}

我怎样才能把下面的代码写得更短一些?

最佳答案

您至少应该只定义一次操作(不要在 else 分支中再次使用代码,只需在没有调用的情况下运行操作。
您还可以为控件编写一个扩展方法,在需要时将 Action 作为调用运行,或者只运行它。这将消除事件处理程序的复杂性,并且您最终将对应用程序中的许多事件使用相同的模式。

static class ControlExtensions
{
public static void InvokeOrExecute(this Control control, Action action)
{
if (control.InvokeRequired)
{
control.Invoke(action);
}
else
{
action();
}
}
}

然后在每个可能是跨线程的事件中:

Action setProgress = delegate()
{
pbTotalProgress.Value = progress;
labe1.Text = "SomeText";
};
this.InvokeOrExecute(setProgress);

关于c# - 简化winforms代码跨线程调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13215946/

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