如何保留 WPF 数据网格的列索引?
我想保留我自己的数据网格每列的索引值,但我不知道该怎么做。看起来索引只能通过 xaml 代码上列的添加顺序来设置。
任何帮助都会很棒,谢谢。
I want to persist the index value of each column of my own datagrid but I don't know how to do it. Looks like the index can only be set thru the order of addition of the columns on the xaml code.
Any help will be great, thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决方案,列有一个 DisplayIndex 属性,我可以将其绑定到我的列 ViewModel。
I found the solution, columns have a DisplayIndex property that I can bind to my column ViewModel.