52 lines
2.0 KiB
XML
52 lines
2.0 KiB
XML
<Window
|
|||
|
|
x:Class="JSMachine.WMS.Storage.BusinessModules.Views.PrintLabelWindow"
|
||
|
|
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:local="clr-namespace:JSMachine.WMS.Storage.BusinessModules.Views"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
Title="标签打印"
|
||
|
|
Width="1000"
|
||
|
|
Height="600"
|
||
|
|
mc:Ignorable="d">
|
||
|
|
<Grid>
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="40" />
|
||
|
|
<RowDefinition Height="860" />
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<Grid Grid.Row="0">
|
||
|
|
<Grid Width="900" HorizontalAlignment="Left">
|
||
|
|
<WrapPanel HorizontalAlignment="Right">
|
||
|
|
<Label Content="打印机:" />
|
||
|
|
<ComboBox
|
||
|
|
x:Name="cbPrinters"
|
||
|
|
Width="230"
|
||
|
|
Height="23"
|
||
|
|
Margin="5"
|
||
|
|
HorizontalAlignment="Left"
|
||
|
|
VerticalAlignment="Top" />
|
||
|
|
<Button
|
||
|
|
x:Name="ButtonDesigner"
|
||
|
|
Click="ButtonDesigner_Click"
|
||
|
|
Content="模板编辑"
|
||
|
|
FontSize="15"
|
||
|
|
Style="{StaticResource ToolButton}" />
|
||
|
|
<Button
|
||
|
|
x:Name="ButtonClose"
|
||
|
|
Click="ButtonClose_Click"
|
||
|
|
Content="关闭窗体"
|
||
|
|
FontSize="15"
|
||
|
|
Style="{StaticResource ToolButton}" />
|
||
|
|
</WrapPanel>
|
||
|
|
</Grid>
|
||
|
|
</Grid>
|
||
|
|
<Grid Grid.Row="1">
|
||
|
|
<WindowsFormsHost x:Name="WindowsFornsHostDesignerControl" />
|
||
|
|
<WindowsFormsHost x:Name="WindowsFornsHostPreviewControl" />
|
||
|
|
</Grid>
|
||
|
|
<!--<Grid Grid.Row="2">
|
||
|
|
<WindowsFormsHost x:Name="WindowsFornsHostPreviewControl" />
|
||
|
|
</Grid>-->
|
||
|
|
</Grid>
|
||
|
|
</Window>
|