将行和列动态绑定到 WPF 中的网格
使用 WPF 中的 DataGrid 对象,我们可以将其行绑定到可观察的集合,这样当在集合中添加或删除行时,UI 就会更新以显示更改。我希望使用网格控件做类似的事情,作为我尝试创建的用户控件的一部分。这可能吗?
With a DataGrid object in WPF, we can bind its rows to an observable collection such that as rows are added or removed to/from the collection, the UI updates to display the changes. I am looking to do something similar with a Grid control as part of a User Control I am trying to create. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想将集合绑定到某种自我更新的 UI,根据我的经验,具有自定义 ItemPanel 的 ItemsControl 和具有模板集的 ItemContainerStyle 以及集合中不同类型对象的 ItemTemplates 是非常强大的。
但这一切都取决于您的预期场景。如果您能详细说明,我可以编写一些 XAML。
If you want to bind a collection to some sort of self updating UI in my experience an ItemsControl with custom ItemPanel and a ItemContainerStyle with a Template set as well as ItemTemplates for different kinds of objects in the collection is quite powerfulI.
It all depends on your exect scenario though. If you can elaborate i could whip up some XAML.