向 ListView 控件添加子项的线程安全
我正在尝试将旧的 Windows 窗体应用程序转换为 WPF 应用程序。
以下代码不再在 C# .NET 4.0 下编译:
// Thread safe adding of subitem to ListView control
private delegate void AddSubItemCallback(
ListView control,
int item,
string subitemText
);
private void AddSubItem(
ListView control,
int item,
string subitemText
) {
if (control.InvokeRequired) {
var d = new AddSubItemCallback(AddSubItem);
control.Invoke(d, new object[] { control, item, subitemText });
} else {
control.Items[item].SubItems.Add(subitemText);
}
}
请帮助转换此代码。
I'm trying to convert an old Windows Forms Application to a WPF application.
The following code no longer compiles under C# .NET 4.0:
// Thread safe adding of subitem to ListView control
private delegate void AddSubItemCallback(
ListView control,
int item,
string subitemText
);
private void AddSubItem(
ListView control,
int item,
string subitemText
) {
if (control.InvokeRequired) {
var d = new AddSubItemCallback(AddSubItem);
control.Invoke(d, new object[] { control, item, subitemText });
} else {
control.Items[item].SubItems.Add(subitemText);
}
}
Please help to convert this code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
希望以下博客文章对您有所帮助。在 WPF 中,您使用
Dispatcher.CheckAccess
/Dispatcher.Invoke
:Hopefully the following blog post will help you. In WPF you use
Dispatcher.CheckAccess
/Dispatcher.Invoke
: