I have a WrapPanel which is vertically aligned.
My problem is, whenever an elements overflows, it goes to next column. So the items in First column becomes uniformly aligned vertically.
Example: Suppose I have 170px Height for WrapPanel and 35px Height for items of WrapPanel. So it will show first 4 elements in first column which will be uniformly spaced. Rest items will be transferred to next column and so on. In the 170px height, I want these items to use their required height and leave the extra space as it is. So after 140px, I should get 30px space free.
I am not getting any way to do this from the properties of WrapPanel, As it is having very less properties to support the layout and styling of its items.
How can I do this?