You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.3 KiB
31 lines
1.3 KiB
<Window x:Class="SSWMS.Client.QueryDialog"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:uc="clr-namespace:SSWMS.Client.UC"
|
|
Title="查询窗口" ResizeMode="NoResize" BorderThickness="1" BorderBrush="Silver"
|
|
WindowStartupLocation="CenterScreen" WindowStyle="None" SizeToContent="WidthAndHeight">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<uc:ucWindowTopHeader Grid.Row="0" U_Title="查询窗口" x:Name="ucWinHeader" />
|
|
<GroupBox Grid.Row="1" Header="编辑查询" Margin="1,5,1,0">
|
|
<Border MaxHeight="700">
|
|
<ScrollViewer>
|
|
<Grid Name="gridControls" Margin="5">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"></ColumnDefinition>
|
|
<ColumnDefinition Width="Auto"></ColumnDefinition>
|
|
</Grid.ColumnDefinitions>
|
|
</Grid>
|
|
</ScrollViewer>
|
|
</Border>
|
|
</GroupBox>
|
|
<WrapPanel Grid.Row="2" Margin="5" HorizontalAlignment="Center" ButtonBase.Click="WrapPanel_Click">
|
|
<Button Name="bOK" Content="确 定" />
|
|
<Button Name="bClose" Content="关 闭" />
|
|
</WrapPanel>
|
|
</Grid>
|
|
</Window>
|