Mega Code Archive

 
Categories / C# / WPF
 

WrapPanel with Background

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"   HorizontalAlignment="Center" VerticalAlignment="Center" Width="150"> <WrapPanel Background="Beige">   <Button>One</Button>   <Button>Two</Button>   <Button>Three</Button>   <Button>Four</Button>   <Button>Five</Button>   <Button>Six</Button>   <Button>Seven</Button>   <Button>Eight</Button> </WrapPanel> </Page>