WRAP PANEL IN WPF:-
This panel Provide Content Step by Step in the same row when row width will be completed then it will shift the component in new rows.
Wrap panel containers mostly used to arrange data row-wise.
By default UI Child Component width and height will be auto in Wrap Panel.
The wrap panel also contains features for orientation, default orientation of the Wrap Panel is Horizontal and we can create change it to vertical.
Wrap panel containers mostly used to arrange data row-wise.
By default UI Child Component width and height will be auto in Wrap Panel.
The wrap panel also contains features for orientation, default orientation of the Wrap Panel is Horizontal and we can create change it to vertical.
<WrapPanel Orientation="Vertical">
<Button Width="200" Height="30">1</Button>
<Button Width="200" Height="30">2</Button>
<Button Width="200" Height="30">3</Button>
<Button Width="200" Height="30">4</Button>
<Button Width="200" Height="30">5</Button>
</WrapPanel>
POST Answer of Questions and ASK to Doubt