|
|
|
@ -7,8 +7,8 @@
|
|
|
|
|
xmlns:local="clr-namespace:Aucma.Core.PrintTo.Views"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
Background="#0C4CA3"
|
|
|
|
|
Title="条码补打" d:DesignHeight="450"
|
|
|
|
|
d:DesignWidth="800">
|
|
|
|
|
Title="条码补打" d:DesignHeight="600"
|
|
|
|
|
d:DesignWidth="1000">
|
|
|
|
|
|
|
|
|
|
<Window.Resources>
|
|
|
|
|
<Style x:Key="DataGridTextColumnCenterSytle" TargetType="{x:Type TextBlock}">
|
|
|
|
@ -45,7 +45,7 @@
|
|
|
|
|
<Setter Property="HorizontalContentAlignment" Value="Center" />
|
|
|
|
|
<Setter Property="BorderBrush" Value="#dddddd" />
|
|
|
|
|
<Setter Property="Height" Value="40"/>
|
|
|
|
|
<Setter Property="FontSize" Value="14"/>
|
|
|
|
|
<Setter Property="FontSize" Value="18"/>
|
|
|
|
|
<Setter Property="Background" Value="#4285DE"/>
|
|
|
|
|
<Setter Property="Foreground" Value="White"/>
|
|
|
|
|
</Style>
|
|
|
|
@ -56,7 +56,7 @@
|
|
|
|
|
<Setter Property="BorderThickness" Value="0" />
|
|
|
|
|
<Setter Property="BorderBrush" Value="Gray" />
|
|
|
|
|
<Setter Property="Height" Value="40"/>
|
|
|
|
|
<Setter Property="FontSize" Value="12"/>
|
|
|
|
|
<Setter Property="FontSize" Value="18"/>
|
|
|
|
|
<Setter Property="Template">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="{x:Type DataGridCell}">
|
|
|
|
@ -99,12 +99,11 @@
|
|
|
|
|
SelectedItem="{Binding SelectedCells, Mode=OneWayToSource}">
|
|
|
|
|
<DataGrid.Columns>
|
|
|
|
|
<DataGridTextColumn Width="*" Binding="{Binding No}" Header="编号" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}" />
|
|
|
|
|
<DataGridTextColumn Width="*" Binding="{Binding ProductCode}" Header="产品编号" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}" />
|
|
|
|
|
<DataGridTextColumn Width="*" Binding="{Binding BarCode}" Header="物料条码" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
|
|
|
|
|
<DataGridTextColumn Width="1.5*" Binding="{Binding BarCode}" Header="物料条码" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
|
|
|
|
|
<DataGridTextColumn Width="2*" Binding="{Binding MaterialCode}" Header="物料编码" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
|
|
|
|
|
<DataGridTextColumn Width="2*" Binding="{Binding MaterialName}" Header="物料名称" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
|
|
|
|
|
<DataGridTextColumn Width="100" Binding="{Binding SuppleMetNum}" Header="补打个数" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
|
|
|
|
|
<DataGridTextColumn Width="200" Binding="{Binding PrintTime ,StringFormat=\{0:yyyy-MM-dd HH:mm\}}" Header="打印时间" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
|
|
|
|
|
<DataGridTextColumn Width="*" Binding="{Binding SuppleMetNum}" Header="补打个数" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
|
|
|
|
|
<DataGridTextColumn Width="*" Binding="{Binding PrintTime ,StringFormat=\{0:yy-MM-dd HH:mm\}}" Header="打印时间" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
|
|
|
|
|
</DataGrid.Columns>
|
|
|
|
|
</DataGrid>
|
|
|
|
|
</UniformGrid>
|
|
|
|
@ -122,30 +121,30 @@
|
|
|
|
|
<RowDefinition Height="auto"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<WrapPanel Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0 15">
|
|
|
|
|
<TextBlock Text="产品编码" FontSize="15" Foreground="white" HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
|
|
|
<TextBox x:Name="ProductNo" Foreground="white" Text="{Binding SelectedItem.ProductCode, ElementName=dgvMH}" IsReadOnly="True" Margin="15 0 0 0 " FontSize="18" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Width="300"
|
|
|
|
|
<TextBlock Text="产品编码" FontSize="20" Foreground="white" HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
|
|
|
<TextBox x:Name="ProductNo" Foreground="white" Text="{Binding SelectedItem.ProductCode, ElementName=dgvMH}" IsReadOnly="True" Margin="15 0 0 0 " FontSize="18" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Width="150"
|
|
|
|
|
materialDesign:HintAssist.Hint="产品编码" BorderBrush="White" />
|
|
|
|
|
</WrapPanel>
|
|
|
|
|
<WrapPanel Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0 15">
|
|
|
|
|
<TextBlock Text="物料编码" FontSize="15" Foreground="white" HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
|
|
|
<TextBox x:Name="MaterialCode" Foreground="white" Text="{Binding SelectedItem.MaterialCode, ElementName=dgvMH}" IsReadOnly="True" Margin="15 0 0 0 " FontSize="18" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Width="300"
|
|
|
|
|
<TextBlock Text="物料编码" FontSize="20" Foreground="white" HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
|
|
|
<TextBox x:Name="MaterialCode" Foreground="white" Text="{Binding SelectedItem.MaterialCode, ElementName=dgvMH}" IsReadOnly="True" Margin="15 0 0 0 " FontSize="18" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Width="150"
|
|
|
|
|
materialDesign:HintAssist.Hint="物料编码" BorderBrush="White" />
|
|
|
|
|
</WrapPanel>
|
|
|
|
|
<WrapPanel Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0 15">
|
|
|
|
|
<TextBlock Text="物料名称" FontSize="15" Foreground="white" HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
|
|
|
<TextBox x:Name="MaterialName" Foreground="white" Text="{Binding SelectedItem.MaterialName, ElementName=dgvMH}" IsReadOnly="True" Margin="15 0 0 0 " FontSize="18" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Width="300"
|
|
|
|
|
<TextBlock Text="物料名称" FontSize="20" Foreground="white" HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
|
|
|
<TextBox x:Name="MaterialName" Foreground="white" Text="{Binding SelectedItem.MaterialName, ElementName=dgvMH}" IsReadOnly="True" Margin="15 0 0 0 " FontSize="18" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Width="150"
|
|
|
|
|
materialDesign:HintAssist.Hint="物料名称" BorderBrush="White" />
|
|
|
|
|
</WrapPanel>
|
|
|
|
|
<WrapPanel Grid.Row="3" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0 15">
|
|
|
|
|
<TextBlock Text="打印条码" FontSize="15" Foreground="white" HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
|
|
|
<TextBox x:Name="BarCode" Foreground="white" Text="{Binding SelectedItem.BarCode, ElementName=dgvMH}" IsReadOnly="True" Margin="15 0 0 0 " FontSize="18" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Width="300"
|
|
|
|
|
<TextBlock Text="打印条码" FontSize="20" Foreground="white" HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
|
|
|
<TextBox x:Name="BarCode" Foreground="white" Text="{Binding SelectedItem.BarCode, ElementName=dgvMH}" IsReadOnly="True" Margin="15 0 0 0 " FontSize="18" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Width="150"
|
|
|
|
|
materialDesign:HintAssist.Hint="打印条码" BorderBrush="White" />
|
|
|
|
|
</WrapPanel>
|
|
|
|
|
|
|
|
|
|
<WrapPanel Grid.Row="4" HorizontalAlignment="Center">
|
|
|
|
|
<Button
|
|
|
|
|
materialDesign:RippleAssist.IsDisabled="True"
|
|
|
|
|
Content="打印" Margin="0 0" Command="{Binding PrintCommand}" CommandParameter="{Binding ElementName=BarCode,Path=Text}"/>
|
|
|
|
|
Content="打印" Margin="0 0" Height="40" Command="{Binding PrintCommand}" CommandParameter="{Binding ElementName=BarCode,Path=Text}"/>
|
|
|
|
|
</WrapPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Border>
|
|
|
|
|