<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
HorizontalAlignment="Center" VerticalAlignment="Center" Width="170">
<StackPanel>
<WrapPanel Orientation="Horizontal">
<Button>One</Button>
<Button>Two</Button>
<Button>Three</Button>
</WrapPanel>
<WrapPanel Orientation="Horizontal" FlowDirection="RightToLeft">
<Button>One</Button>
<Button>Two</Button>
<Button>Three</Button>
</WrapPanel>
</StackPanel>
</Page>
|