WPF 中的 FlowLayout ItemsControl
实际上我需要一个非常简单的 ItemsControl 。我希望集合中的所有项目从左到右放置,当没有足够的空间容纳下一个元素时,它应该放在下一行。
基本上就像 Java Swing 中的 FlowLayout,或者 Windows 中的普通图标文件夹视图。
我不敢相信这不是内置的,但由于某种原因我找不到它。
I need a really simple ItemsControl actually. I want all the items in the collection to be put left to right and when it's not enough space to fit the next element, it should be put on the next line.
So basically like FlowLayout in Java Swing, or the normal Icon folder view in Windows.
I can't believe this is not built in, but for some reason I can't find it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这些:
http://msdn .microsoft.com/en-us/library/ms750564%28v=vs.85%29.aspx
特别是 WrapPanel
编辑:
ItemsControl 控件有一个 ItemsPanel 属性,您可以将其设置为使用 WrapPanel:
http://msdn.microsoft.com/en-us/library /system.windows.controls.itemscontrol.itemspanel.aspx
Have a look at these:
http://msdn.microsoft.com/en-us/library/ms750564%28v=vs.85%29.aspx
Specifically the WrapPanel
Edit:
The ItemsControl control has a ItemsPanel Property which you canset to use a WrapPanel:
http://msdn.microsoft.com/en-us/library/system.windows.controls.itemscontrol.itemspanel.aspx