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.
69 lines
3.1 KiB
69 lines
3.1 KiB
<Window x:Class="BBWY.Client.Views.PackTask.PrintPackTaskDetail"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:BBWY.Client.Views.PackTask"
|
|
mc:Ignorable="d"
|
|
Title="PrintPackTaskDetail" Height="492" Width="272">
|
|
<Grid x:Name="print_box">
|
|
<Grid Margin="10">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="110"/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<Image Width="110" Stretch="Fill" Source="{Binding PurchaseOrderImage}"/>
|
|
<StackPanel VerticalAlignment="Top" Grid.Column="1">
|
|
<TextBlock Text="云仓" HorizontalAlignment="Center" FontWeight="Bold" FontSize="30"/>
|
|
<Image Height="40" Stretch="Fill" />
|
|
<TextBlock Style="{StaticResource middleTextBlock}" Text="10001"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
<StackPanel Orientation="Vertical" Grid.Row="1">
|
|
<TextBlock Margin="0 5 0 5">
|
|
<Run Text="SKU名称:"/>
|
|
<Run Text="{Binding PackTaskModel.ItemList[0].SkuName}"/>
|
|
</TextBlock>
|
|
<TextBlock>
|
|
<Run Text="品名:"/>
|
|
<Run Text="{Binding PackTaskModel.ItemList[0].BrandName}"/>
|
|
</TextBlock>
|
|
<TextBlock Margin="0 5 0 5">
|
|
<Run Text="SKU数量:"/>
|
|
<Run Text="1234567"/>
|
|
</TextBlock>
|
|
<TextBlock>
|
|
<Run Text="SKU名称:"/>
|
|
<Run Text="1234567"/>
|
|
</TextBlock>
|
|
<TextBlock Margin="0 5 0 5">
|
|
<Run Text="SKU名称:"/>
|
|
<Run Text="1234567"/>
|
|
</TextBlock>
|
|
<Image Margin="10 10 10 0" Stretch="Fill" Source="/resources/images/barcode.png"/>
|
|
<TextBlock Margin="0 0 0 5" Style="{StaticResource middleTextBlock}" >
|
|
<Run Text="POP"/>
|
|
<Run Text="123456789789"/>
|
|
</TextBlock>
|
|
<Border Height="2" BorderThickness="1" BorderBrush="Black"/>
|
|
<TextBlock Margin="0 5 0 5">
|
|
<Run Text="SKU名称:"/>
|
|
<Run Text="1234567"/>
|
|
</TextBlock>
|
|
<TextBlock>
|
|
<Run Text="SKU名称:"/>
|
|
<Run Text="1234567"/>
|
|
</TextBlock>
|
|
<TextBlock Margin="0 5 0 5">
|
|
<Run Text="SKU名称:"/>
|
|
<Run Text="1234567"/>
|
|
</TextBlock>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|
|
|