제목 : StackPanel Layout
글번호:
|
|
9
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2009/02/15 오후 10:37:45
|
조회수:
|
|
2890
|
<UserControl x:Class="RiaStackPanel.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="400" Height="300">
<Grid x:Name="LayoutRoot" Background="White">
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Background="Pink">
<Button Content="One" HorizontalAlignment="Left"></Button>
<Button Content="Two" HorizontalAlignment="Right"></Button>
<Button Content="Three" HorizontalAlignment="Center"></Button>
</StackPanel>
<StackPanel Grid.Row="1" Background="Pink" Orientation="Horizontal">
<Button Content="One" VerticalAlignment="Top"></Button>
<Button Content="Two" VerticalAlignment="Bottom"></Button>
<Button Content="Three" VerticalAlignment="Center"></Button>
</StackPanel>
</Grid>
</UserControl>