作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编写服务器应用程序,我的代码开始变得有点……重复……看看:
private void AppendLog(string message)
{
if (txtLog.InvokeRequired)
{
txtLog.Invoke(new MethodInvoker(() => txtLog.AppendText(message + Environment.NewLine)));
}
else
{
txtLog.AppendText(message);
}
}
private void AddToClientsListBox(string clientIdentifier)
{
if (listUsers.InvokeRequired)
{
listUsers.Invoke(new MethodInvoker(() => listUsers.Items.Add(clientIdentifier)));
}
else
{
listUsers.Items.Add(clientIdentifier);
}
}
private void RemoveFromClientsListBox(string clientIdentifier)
{
if (listUsers.InvokeRequired)
{
listUsers.Invoke(new MethodInvoker(() => listUsers.Items.Remove(clientIdentifier)));
}
else
{
listUsers.Items.Remove(clientIdentifier);
}
}
我正在使用 .NET 4.0。仍然没有更好的方法从其他线程更新 GUI 吗?如果它有任何不同,我正在使用 tasks在我的服务器上实现线程。
最佳答案
您可以将重复的逻辑封装在另一个方法中:
public static void Invoke<T>(this T control, Action<T> action)
where T : Control {
if (control.InvokeRequired) {
control.Invoke(action, control);
}
else {
action(control);
}
}
你可以这样使用:
listUsers.Invoke(c => c.Items.Remove(clientIdentifier));
关于c# - 从其他线程更新 GUI 控件时如何减少重复?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7465217/
我是一名优秀的程序员,十分优秀!