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.
102 lines
5.3 KiB
102 lines
5.3 KiB
<c:BWindow x:Class="BBWYB.Client.Views.PackPurchaseTask.LookBarCodeWindow"
|
|
xmlns:c="clr-namespace:SJ.Controls;assembly=SJ.Controls"
|
|
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"
|
|
mc:Ignorable="d"
|
|
Style="{StaticResource bwstyle}"
|
|
Height="245" Width="320"
|
|
CloseButtonVisibility="Visible"
|
|
CloseButtonColor="{StaticResource WindowButtonColor}"
|
|
MinButtonVisibility="Collapsed"
|
|
MaxButtonVisibility="Collapsed"
|
|
RightButtonGroupMargin="0,5,5,0"
|
|
Title="LookBarCodeWindow"
|
|
>
|
|
<!-- DataContext="{Binding CreateSetBarCodeView,Source={StaticResource Locator}}"-->
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="20"/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<Border BorderThickness="0,0,0,1" BorderBrush="{StaticResource MainMenu.BorderBrush}"
|
|
Background="{StaticResource Border.Background}">
|
|
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
</Border>
|
|
<DockPanel Grid.Row="1">
|
|
<Border Name="jingjian" Visibility="{Binding LabelModel,Converter={StaticResource objConverter},ConverterParameter=精简模板:Visible:Collapsed}" BorderBrush="{StaticResource Border.Brush}" BorderThickness="1" Height="220" Margin="1">
|
|
<StackPanel Orientation="Vertical" >
|
|
<TextBlock Margin="10,25,10,0" FontSize="15" FontWeight="Black" >
|
|
<Run Text="品名:"/>
|
|
<Run Text="{Binding BrandName}"/>
|
|
</TextBlock>
|
|
<TextBlock Margin="10,25,10,0" FontSize="15" FontWeight="Black" >
|
|
<Run Text="规格:"/>
|
|
<Run Text="{Binding SkuName}"/>
|
|
</TextBlock>
|
|
<Image Source="/resources/images/barcode.png" Margin="10,25,10,0"/>
|
|
<TextBlock Text="POP" HorizontalAlignment="Center" Margin="10,0,10,0" FontSize="15" FontWeight="Black" >
|
|
<Run Text="{Binding SkuId}"/>
|
|
</TextBlock>
|
|
</StackPanel>
|
|
</Border>
|
|
<Border Name="biaozhun" Visibility="{Binding LabelModel,Converter={StaticResource objConverter},ConverterParameter=标准模板:Visible:Collapsed}" BorderBrush="{StaticResource Border.Brush}" BorderThickness="1" Height="220" Margin="1">
|
|
<StackPanel Orientation="Vertical" >
|
|
|
|
<TextBlock Margin="10,10,10,0" FontSize="15" FontWeight="Black" >
|
|
<Run Text="品牌:"/>
|
|
<Run Text="{Binding Brand}"/>
|
|
</TextBlock>
|
|
<TextBlock Margin="10,10,10,0" FontSize="15" FontWeight="Black" >
|
|
<Run Text="品名:"/>
|
|
<Run Text="{Binding BrandName}"/>
|
|
</TextBlock>
|
|
<TextBlock Margin="10,10,10,0" FontSize="15" FontWeight="Black" >
|
|
<Run Text="型号:"/>
|
|
<Run Text="{Binding ProductNo}"/>
|
|
</TextBlock>
|
|
<TextBlock Margin="10,10,10,0" FontSize="15" FontWeight="Black" >
|
|
<Run Text="规格:"/>
|
|
<Run Text="{Binding SkuName}"/>
|
|
</TextBlock>
|
|
<Image Source="/resources/images/barcode.png" Margin="10,10,10,0"/>
|
|
<TextBlock Text="POP" HorizontalAlignment="Center" Margin="10,0,10,0" FontSize="15" FontWeight="Black" >
|
|
<Run Text="{Binding SkuId}"/>
|
|
</TextBlock>
|
|
|
|
|
|
|
|
|
|
</StackPanel>
|
|
</Border>
|
|
<Border Name="wuxinghao" Visibility="{Binding LabelModel,Converter={StaticResource objConverter},ConverterParameter=无型号模板:Visible:Collapsed}" BorderBrush="{StaticResource Border.Brush}" BorderThickness="1" Height="220" Margin="1">
|
|
<StackPanel Orientation="Vertical" >
|
|
|
|
<TextBlock Margin="10,10,10,5" FontSize="15" FontWeight="Black" >
|
|
<Run Text="品牌:"/>
|
|
<Run Text="{Binding Brand}"/>
|
|
</TextBlock>
|
|
<TextBlock Margin="10,10,10,5" FontSize="15" FontWeight="Black" >
|
|
<Run Text="品名:"/>
|
|
<Run Text="{Binding BrandName}"/>
|
|
</TextBlock>
|
|
<TextBlock Margin="10,10,10,5" FontSize="15" FontWeight="Black" >
|
|
<Run Text="规格:"/>
|
|
<Run Text="{Binding SkuName}"/>
|
|
</TextBlock>
|
|
<Image Source="/resources/images/barcode.png" Margin="10,10,10,0"/>
|
|
<TextBlock Text="POP" HorizontalAlignment="Center" Margin="10,0,10,0" FontSize="15" FontWeight="Black" >
|
|
<Run Text="{Binding SkuId}"/>
|
|
</TextBlock>
|
|
|
|
|
|
|
|
|
|
</StackPanel>
|
|
</Border>
|
|
</DockPanel>
|
|
|
|
|
|
</Grid>
|
|
</c:BWindow>
|
|
|