29 lines
1.4 KiB
XML
29 lines
1.4 KiB
XML
<Window x:Class="WPF基础_6_Grid8分隔窗口.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="800">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition MinWidth="100" />
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition MinWidth="50" />
|
|
</Grid.ColumnDefinitions>
|
|
<GridSplitter Grid.Row="0" Grid.Column="1 " Width="3" VerticalAlignment="Stretch" HorizontalAlignment="Center"
|
|
Background="Red" ShowsPreview="True" />
|
|
<GridSplitter Grid.Row="1" Grid.Column="1" Width="3" VerticalAlignment="Stretch" HorizontalAlignment="Right"
|
|
Background="Aqua" ShowsPreview="False" />
|
|
|
|
<Button Grid.Row="0" Grid.Column="0" Margin="3">左边</Button>
|
|
<Button Grid.Row="0" Grid.Column="2" Margin="3">右边</Button>
|
|
<Button Grid.Row="1" Grid.Column="0" Margin="3">下左边</Button>
|
|
<Button Grid.Row="1" Grid.Column="2" Margin="3">下右边</Button>
|
|
|
|
</Grid>
|
|
</Window> |