| | |
| | | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| | | mc:Ignorable="d" |
| | | x:Name="self" |
| | | d:DesignHeight="900" d:DesignWidth="800" Background="#FFF"> |
| | | d:DesignHeight="900" d:DesignWidth="800"> |
| | | |
| | | <UserControl.Resources> |
| | | <ResourceDictionary> |
| | |
| | | <StackPanel> |
| | | <StackPanel x:Name="materialCodePanel"> |
| | | <Label Content="物料编码"/> |
| | | <TextBox x:Name="materialCodeText" Text="{Binding materialCode,UpdateSourceTrigger=PropertyChanged}"/> |
| | | <TextBox x:Name="materialCodeText" IsReadOnly="True" Text="{Binding materialCode,UpdateSourceTrigger=PropertyChanged}"/> |
| | | </StackPanel> |
| | | |
| | | <StackPanel x:Name="weightPanel"> |
| | | <Label Content="重量(kg)"/> |
| | | <TextBox IsReadOnly="True" x:Name="weightText" Text="{Binding weight,UpdateSourceTrigger=PropertyChanged}"/> |
| | | <TextBox IsReadOnly="True" x:Name="weightText" Text="{Binding weight}"/> |
| | | </StackPanel> |
| | | |
| | | <StackPanel x:Name="materialNamePanel"> |