5

How can I create a control container where every item (control) behaves like a Floating DIV (in HTML), like this video (considering that each folder is a control)?

user962284
  • 670
  • 1
  • 12
  • 29

1 Answers1

5

Take a look at the WrapPanel class. MSDN

It has the functionality you are looking for.

Positions child elements in sequential position from left to right, breaking content to the next line at the edge of the containing box. Subsequent ordering happens sequentially from top to bottom or from right to left, depending on the value of the Orientation property.

nickm
  • 1,775
  • 1
  • 12
  • 14