HTML 代码:
<Page xmlns="http://schemas.microsoft.com/winfx/avalon/2005"
xmlns:x="http://schemas.microsoft.com/winfx/xaml/2005"
x:Class="QuickStart_2.Page1">
<StackPanel>
<Button HorizontalAlignment="Left"
Width="100"
Margin="10,10,10,10">Button 1</Button>
<Button HorizontalAlignment="Left"
Width="100"
Margin="10,10,10,10">Button 2</Button>
<Button HorizontalAlignment="Left"
Width="100"
Margin="10,10,10,10">Button 3</Button>
</StackPanel>
</Page>
HTML 代码:
<Page xmlns="http://schemas.microsoft.com/winfx/avalon/2005"
xmlns:x="http://schemas.microsoft.com/winfx/xaml/2005"
x:Class="QuickStart_3.Page1">
<DockPanel ID="RootPanel">
<TextBlock Background="LightBlue"
DockPanel.Dock="Top">Some Text</TextBlock>
<TextBlock DockPanel.Dock="Bottom"
Background="LightYellow">Some text at the bottom of the page.</TextBlock>
<TextBlock DockPanel.Dock="Left"
Background="Lavender">Some More Text</TextBlock>
<DockPanel Background="Bisque"
ID="InnerPanel">
<StackPanel DockPanel.Dock="Top">
<Button HorizontalAlignment="Left"
Height="30px"
Width="100px"
Margin="10,10,10,10">Button1</Button>
<Button HorizontalAlignment="Left"
Height="30px"
Width="100px"
Margin="10,10,10,10">Button2</Button>
</StackPanel>
<TextBlock Background="LightGreen">Some Text Below the Buttons</TextBlock>
</DockPanel>
</DockPanel>
</Page>