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.
52 lines
2.0 KiB
XML
52 lines
2.0 KiB
XML
<Window x:Class="XGLFinishPro.Views.SopInfoWin"
|
|
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:XGLFinishPro.Views"
|
|
xmlns:pdf="clr-namespace:PdfiumViewer;assembly=PdfiumViewer"
|
|
mc:Ignorable="d"
|
|
Title="FlowInfoWin" Height="450" Width="800" Loaded="Window_Loaded" WindowStartupLocation="CenterScreen" WindowStyle="None">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Label
|
|
Grid.Row="0"
|
|
Width="175"
|
|
Height="37"
|
|
Margin="25,20,0,25"
|
|
HorizontalAlignment="Left"
|
|
VerticalAlignment="Center">
|
|
<TextBlock
|
|
FontSize="22"
|
|
FontWeight="Bold"
|
|
Text="SOP" />
|
|
</Label>
|
|
|
|
<Button
|
|
Grid.Row="0"
|
|
Width="90"
|
|
Height="44"
|
|
Margin="0,20,25,25"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Center"
|
|
Background="#2B7EE6"
|
|
Click="Back_Click" Content="关闭" FontSize="20"
|
|
Foreground="White"> </Button>
|
|
<StackPanel Grid.Row="1">
|
|
<WindowsFormsHost Name="windowsFormsHost" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Visibility="Hidden"/>
|
|
</StackPanel>
|
|
<ContentControl
|
|
x:Name="Window2"
|
|
Grid.Row="1"
|
|
VerticalAlignment="Stretch" HorizontalAlignment="Stretch"
|
|
>
|
|
<pdf:PdfViewer x:Name="pdfViewer" Visible="False" />
|
|
|
|
</ContentControl>
|
|
|
|
</Grid>
|
|
</Window>
|