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.
34 lines
1.7 KiB
34 lines
1.7 KiB
<ad:DocumentContent x:Class="SiaSun.LMS.WPFClient.SYS.INIT_TABLE_DATA"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:uc="clr-namespace:SiaSun.LMS.WPFClient.UC"
|
|
xmlns:ad="clr-namespace:AvalonDock;assembly=AvalonDock"
|
|
Title="INIT_TABLE_DATA" Height="300" Width="300" Loaded="DocumentContent_Loaded">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<GroupBox Header="请选择初始化数据的数据库表" Grid.Row="0" >
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<Border Grid.Row="0" CornerRadius="2" Background="White">
|
|
<WrapPanel Name="panelTableName" Margin="1"></WrapPanel>
|
|
</Border>
|
|
<WrapPanel Grid.Row="1">
|
|
<CheckBox Name="chkAllCheck" Click="chkAllCheck_Click" Margin="5">反选</CheckBox>
|
|
<CheckBox Name="chkInitCell" Margin="10,5,10,5">是否初始化货位状态</CheckBox>
|
|
</WrapPanel>
|
|
</Grid>
|
|
</GroupBox>
|
|
<GroupBox Header="操作区" Grid.Row="2">
|
|
<Border ButtonBase.Click="Border_Click">
|
|
<Button Name="btnOK" Width="70" Margin="5">开始初始化</Button>
|
|
</Border>
|
|
</GroupBox>
|
|
</Grid>
|
|
</ad:DocumentContent>
|