使用 WPF 和 GridView 中的子行到行中C#

发布于 2024-08-26 05:09:01 字数 131 浏览 5 评论 0原文

在我的 gridview 中,我需要将子行聚合到每一行中,就像在 p2p emule/amule 应用程序中一样,您可以双击正在下载的每个文件,然后在其下方您可以看到正在下载的文件的部分。

在WPF中可以吗?

谢谢。

In my gridview I need to aggregate subrows into each row, something like in p2p emule/amule application where you can do double click to each file you are downloading and then under it you can see the parts of the file from where you are downloading.

Is it possible in WPF?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

南城追梦 2024-09-02 05:09:01

您可以执行以下操作:

将一些容器(即:另一个 Grid 或 StackPanel)添加到 Grid 行。这将允许您将多个对象添加到网格行。在“双击”事件中,您可以更改可见性以显示这些对象。

将 TreeView 与 HierarchicalDataTemplate 结合使用,并将其视为分层数据。这很可能是更“正确”的方法。 MSDN 上的显示分层数据示例演示了此过程。

You could do a few things:

Add some container (ie: another Grid or a StackPanel) to the Grid row. This would let you add multiple objects to the grid row. On your "double click" event, you could change the visibility to show those objects.

Use a TreeView with a HierarchicalDataTemplate, and treat this as hierarchical data. This is most likely the more "correct" approach. The Displaying Hierarchical Data sample on MSDN walks through the process of this.

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