作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个跨线程应用程序,它在 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/
我是一名优秀的程序员,十分优秀!