FlowLayout ItemsControl in WPF
I need a really simple ItemsControl actually. I want all the items in the collection to be pu开发者_运维技巧t 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.
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
精彩评论