52 lines
2.4 KiB
XML
52 lines
2.4 KiB
XML
<Window x:Class="WPF基础_6_Grid10共享尺寸组.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"
|
|
Icon="public/images/1.png"
|
|
mc:Ignorable="d"
|
|
Title="WPF基础_6_Grid10共享尺寸组" Height="450" Width="800">
|
|
<Grid IsSharedSizeScope="True">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid Grid.Row="0" Margin="3" Background="LightYellow">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" SharedSizeGroup="TextLabel" />
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Grid.Column="0" Margin="5">需要一个很长的文字,再长一点.....</Label>
|
|
<GridSplitter Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Stretch" Width="5"
|
|
Background="Coral" />
|
|
<Label Grid.Column="2" Margin="5">更多的文字</Label>
|
|
<TextBox Grid.Column="3" Margin="5">
|
|
一个文字盒子
|
|
</TextBox>
|
|
</Grid>
|
|
|
|
<Label Grid.Row="1" Margin="5">
|
|
....................看这里.......................
|
|
....................看这里.......................
|
|
....................看这里.......................
|
|
....................看这里.......................
|
|
</Label>
|
|
|
|
<Grid Grid.Row="2" Margin="3" Background="LightYellow">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" SharedSizeGroup="TextLabel" />
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Label Grid.Column="0" Margin="5">short</Label>
|
|
<GridSplitter Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Stretch" Width="5"
|
|
Background="Coral" />
|
|
<TextBox Grid.Column="2" Margin="5" />
|
|
</Grid>
|
|
</Grid>
|
|
</Window> |