WPF 中的 FlowLayout ItemsControl

发布于 2024-11-07 03:50:28 字数 176 浏览 0 评论 0原文

实际上我需要一个非常简单的 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 技术交流群。

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

发布评论

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

评论(1

走过海棠暮 2024-11-14 03:50:28

看看这些:

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

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