C# Force ListBox to update elements(C# 强制 ListBox 更新元素)
问题描述
我正在继承标准 ListBox 控件.我会收到有关添加到列表中的任何元素的更改的通知.任务是更新列表框显示的文本以用于更改元素.
I'm subclassing the standard ListBox control. I get notified of changes to any of the elements added to the list. The task is to update the text shown by the ListBox for the changing element.
我知道我可以删除更改的元素并重新添加它,但由于显而易见的原因,这似乎并不可取.
I'm aware that i could just remove the changed element and add it again, but this seems not preferable for obvious reasons.
推荐答案
很遗憾,ListView
中的数据绑定不支持常规(项目)更改通知事件(FooChanged代码>/<代码>INotifyPropertyChanged代码>).但是,如果您知道更改,您可以让列表重新绑定自身.由于您是子类化,您可以调用:
Unfortunately, the data-binding in ListView
doesn't support regular (item) change notification events (FooChanged
/ INotifyPropertyChanged
). However, if you know about the change, you can get the list to re-bind itself. Since you are subclassing, you can call:
this.RefreshItems();
或单个项目:
this.RefreshItem(index);
否则,由于这不是公开的,您可以通过更改 DisplayMember
来模拟它:
Otherwise, since this isn't public, you can simulate it by changing the DisplayMember
:
lb.DisplayMember = "";
lb.DisplayMember = "Bar";
可能有点 hacky,但它可以工作,并保持当前选择等(不像清除 DataSource
).
A little hacky, maybe, but it works, and maintains the current selection etc (unlike clearing the DataSource
).
这篇关于C# 强制 ListBox 更新元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C# 强制 ListBox 更新元素
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 输入按键事件处理程序 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01