使 WPF DataGrid 看起来像 ListView

发布于 2024-12-05 19:41:12 字数 443 浏览 2 评论 0原文

我有一个项目,其中有一个现有的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

御弟哥哥 2024-12-12 19:41:12

您可以这样解决:将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文