|
|
<Window x:Class="FourComponentWeightClient.GoodsSettingWindow"
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
Title="存货设置" Height="400" Width="300" ShowInTaskbar="False"
|
|
|
WindowStartupLocation="CenterOwner" ResizeMode="NoResize" FontSize="16">
|
|
|
<Grid Margin="10">
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition/>
|
|
|
<RowDefinition/>
|
|
|
<RowDefinition/>
|
|
|
<RowDefinition/>
|
|
|
<RowDefinition/>
|
|
|
</Grid.RowDefinitions>
|
|
|
<Grid.ColumnDefinitions>
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
<ColumnDefinition Width="1.5*"/>
|
|
|
</Grid.ColumnDefinitions>
|
|
|
<TextBlock Text="牛肩" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
|
<TextBox Grid.Column="1" x:Name="nj" Margin="4,12" Padding="5" VerticalContentAlignment="Center"/>
|
|
|
|
|
|
<TextBlock Grid.Row="1" Text="牛前" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
|
<TextBox Grid.Row="1" Grid.Column="1" x:Name="nq" Margin="4,12" Padding="5" VerticalContentAlignment="Center"/>
|
|
|
|
|
|
<TextBlock Grid.Row="2" Text="牛后" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
|
<TextBox Grid.Row="2" Grid.Column="1" x:Name="nh" Margin="4,12" Padding="5" VerticalContentAlignment="Center"/>
|
|
|
|
|
|
<TextBlock Grid.Row="3" Text="带骨牛前" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
|
<TextBox Grid.Row="3" Grid.Column="1" x:Name="dgnq" Margin="4,12" Padding="5" VerticalContentAlignment="Center"/>
|
|
|
|
|
|
<Button Grid.Row="4" Grid.Column="1" Content="保存" Width="120" Height="40" HorizontalAlignment="Left" Click="Button_Click"/>
|
|
|
</Grid>
|
|
|
</Window>
|