I would like to create UniformGrid
which will contain WindowsFormsHosts
(inside them are WinForms
). 4 Hosts in every row(4 cols) and after exceding its' visible capacity new elements will be added underneath and user will be able to scroll the UniformGrid
. I do not know even where to start beside defining UniFormGrid and its' column number.
<UniformGrid x:Name="Grid" Columns="4">
</UniformGrid>
The behaviour I would like to get is just like in Windows' explorer if there are too many icons in the view you can scroll down.
I used UniformGrid
because I needed equivalent of GridLayout()
in Java. I want every added element to be the same size. I add elements from .cs.