使 WPF DataGrid 看起来像 ListView
我有一个项目,其中有一个现有的 DataGrid。我有一个正确绑定到它的数据集,并且可以使用它们所代表的数据集中字段的数据填充列。
现在我遇到的情况是,随着时间的推移,其中一些描述符字段为空,因此,如果我显式显示列,然后填充用户最终会看到一个稀疏的丑陋 DataGrid。
有什么方法可以删除分隔线/列并合并描述字段。例如,如果用户 A 仅填写了他/她的电子邮件字段,用户 B 仅填写了姓名字段,用户 C 仅填写了电话号码字段,我想显示一些看起来像简单列表的内容: [电子邮件受保护] 尤塞里·S·比 (555) 555-1234
这可能吗?这是在 XAML 还是代码隐藏中完成的?
I have a project where there is an existing DataGrid. I have a DataSet properly bound to it and can populate columns with data for the field in the DataSet they represent.
Now I am in a situation where over time some of these descriptor fields are empty, so if I explicitly show columns and then populate the user ends up seeing a sparsely populated ugly DataGrid.
Is there some way that I can remove dividers/columns and merge descript fields. For example, if User A only has his/her email field filled out, User B only has the name field filled out and User C only had phone number field filled out I would like to display something that looks like a simple list:
[email protected]
Useri S. Bee
(555) 555-1234
Is this possible? Is this done in the XAML or the codebehind?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以这样解决:将 DataSet 绑定到 ListBox 并使用 DataTemplate。 :)
MSDN DataTemplate 概述
或者您可以将行转换为字符串,然后您获得一个列表,然后将其绑定到列表框。我认为第一个解决方案更好。
It is possible that you can solve it like this: bind your DataSet to the ListBox and work with a DataTemplate. :)
MSDN DataTemplate Overview
Or you could convert your rows to string and then you get a List and then bind that to the ListBox. I think the first solution is better.