You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AUCMA_SCADA/Admin.Core.Wpf/Views/PrintToDevView.xaml

71 lines
3.7 KiB
XML

<Window x:Class="Admin.Core.Wpf.Views.PrintToDevView"
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:Admin.Core.Wpf.Views"
mc:Ignorable="d"
Title="打印" Height="400" Width="400">
<Grid>
<Border BorderBrush="#0288d1" BorderThickness="1" Padding="5" CornerRadius="5">
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition />
</Grid.RowDefinitions>
<UniformGrid Grid.Row="0" Margin="5">
<GroupBox Margin="16" Header="订单信息" >
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<WrapPanel Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="订单编号:"/>
<TextBlock Text="123456789"/>
</WrapPanel>
<WrapPanel Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="产品名称:"/>
<TextBlock Text="SC-12345678"/>
</WrapPanel>
<WrapPanel Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="打印名称:"/>
<TextBlock Text="SC-12345678"/>
</WrapPanel>
</Grid>
</GroupBox>
</UniformGrid>
<UniformGrid Grid.Row="1" Margin="5">
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<WrapPanel Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="打印进度:"/>
<TextBox Text="SC-12345678" Width="150" Margin="5"/>
</WrapPanel>
<WrapPanel Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="打印信息:" Margin="5"/>
<TextBox Text="SC-12345678" Width="150" Margin="5"/>
</WrapPanel>
<WrapPanel Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="打印状态:" Margin="5"/>
<TextBlock Text="SC-12345678" Margin="5"/>
<TextBlock Text="异常数量:" Margin="5"/>
<TextBlock Text="0" Margin="5"/>
</WrapPanel>
<WrapPanel Grid.Row="3" HorizontalAlignment="Center" VerticalAlignment="Center">
<Button Content="暂停" Margin="5"/>
<Button Content="取消" Margin="5"/>
</WrapPanel>
</Grid>
</UniformGrid>
</Grid>
</Border>
</Grid>
</Window>