使用 WPF 和 GridView 中的子行到行中C#
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行以下操作:
将一些容器(即:另一个 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.