29 lines
1.4 KiB
XML
29 lines
1.4 KiB
XML
<Window x:Class="WPF基础_11_动态布局.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"
|
|
Icon="public/logo/1.ico"
|
|
Title="WPF基础_11_动态布局" Height="450" Width="800">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- Visibility="Visible" 显示面板 -->
|
|
<StackPanel Grid.Row="0" Grid.Column="0" Visibility="Visible">
|
|
<Button Name="CmdPre" Margin="10 10 10 3">上一页</Button>
|
|
<Button Name="CmdNext" Margin="10 10 10 3">下一页</Button>
|
|
<CheckBox Name="ChLongText" Margin="10" Checked="ChLongText_OnChecked" Unchecked="ChLongText_OnUnchecked">显示长文本</CheckBox>
|
|
</StackPanel>
|
|
|
|
<TextBox Grid.Row="0" Grid.Column="1" Margin="0 10 10 10 " TextWrapping="WrapWithOverflow" Grid.RowSpan="2">这是什么什么</TextBox>
|
|
<Button Grid.Row="1" Grid.Column="0" Name="CmdClose" Margin="10 3 10 10">关闭</Button>
|
|
</Grid>
|
|
</Window> |