Wrapping Panel Layout from Left to Right in XAML using WPF

vishalneeraj-24503
Posted by vishalneeraj-24503 under WPF category on | Points: 40 | Views : 1567
<WrapPanel>
<Label Content="Wrap Panel Layout" FontSize = "10"
FontWeight = "Bold" Foreground = "LightYellow"/>

<Label Content="Label1" FontSize="15" FontWeight="Bold" />
<Label Content="Label2" FontSize="15" FontWeight="Bold" />
<Label Content="Label3" FontSize="15" FontWeight="Bold" />
<Label Content="Label4" FontSize="15" FontWeight="Bold" />
<Label Content="Label5" FontSize="15" FontWeight="Bold" />
<Label Content="Label6" FontSize="15" FontWeight="Bold" />
<Label Content="Label7" FontSize="15" FontWeight="Bold" />
<Label Content="Label8" FontSize="15" FontWeight="Bold" />
<Label Content="Label9" FontSize="15" FontWeight="Bold" />
</WrapPanel>

Comments or Responses

Login to post response