Can anybody please help me? I need to bind CLR Objects to a WrapPanel in SILVERLIGHT. What should be displayed in the end is a couple of Image Thumbnails with their description (Text). I know how to do it with a ListBox, but I need it to be a WrapPanel, so my Thumbs will be displayed horizontally and break into a new raw... and so on.
|
|
In this case you still want your control to be a ListBox, but you set the ItemsPanel of the ListBox to be a WrapPanel such as
It will then display the items horizontally and wrap at the end of the line. |
||||||
|
|
|
Problem solved. I had to replace the StackPanel INSIDE the ListBox with the WrapPanel. Very simple... you just have to know it! |
||
|
|
