41 lines
2.1 KiB
XML
41 lines
2.1 KiB
XML
<Window x:Class="WPF基础_10_布局示例.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="450" Width="500">
|
|
<Grid Margin="3,3,10,3">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- 第一行 -->
|
|
<Label Grid.Row="0" Grid.Column="0" Margin="3" VerticalAlignment="Center">Home:</Label>
|
|
<TextBox Grid.Row="0" Grid.Column="1" Margin="3" Padding="2" Height="Auto" VerticalAlignment="Center" />
|
|
<Button Grid.Row="0" Grid.Column="2" Margin="3" Padding="2">预览</Button>
|
|
|
|
<!-- 第二行 -->
|
|
<Label Grid.Row="1" Grid.Column="0" Margin="3" VerticalAlignment="Center">网络</Label>
|
|
<TextBox Grid.Row="1" Grid.Column="1" Margin="3" Padding="2" Height="Auto" VerticalAlignment="Center" />
|
|
<Button Grid.Row="1" Grid.Column="2" Margin="3" Padding="2">预览</Button>
|
|
|
|
<!-- 第三行 -->
|
|
<Label Grid.Row="2" Grid.Column="0" Margin="3" VerticalAlignment="Center">其它</Label>
|
|
<TextBox Grid.Row="2" Grid.Column="1" Margin="3" Padding="2" Height="Auto" VerticalAlignment="Center" />
|
|
<Button Grid.Row="2" Grid.Column="2" Margin="3" Padding="2">预览</Button>
|
|
|
|
<!-- 第四行 -->
|
|
<Label Grid.Row="3" Grid.Column="0" Margin="3" VerticalAlignment="Center">还有:</Label>
|
|
<TextBox Grid.Row="3" Grid.Column="1" Margin="3" Padding="2" Height="Auto" VerticalAlignment="Center" />
|
|
<Button Grid.Row="3" Grid.Column="2" Margin="3" Padding="2">预览</Button>
|
|
</Grid>
|
|
</Window> |