1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <UserControl x:Class="Platform.Print.PrintPreviewContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <Border>
- <Grid Margin="10">
- <Grid.RowDefinitions>
- <RowDefinition Height="30" />
- <RowDefinition Height="*" />
- <RowDefinition Height="50" />
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="100" />
- <ColumnDefinition Width="100" />
- </Grid.ColumnDefinitions>
- <TextBlock Name="Text_Title"
- Grid.Row="0"
- Grid.ColumnSpan="3"
- Height="30"
- FontSize="20"
- FontWeight="Bold"
- LineHeight="20"
- Text="表单名称" />
- <ScrollViewer Grid.Row="1"
- Grid.ColumnSpan="3"
- Margin="5"
- HorizontalScrollBarVisibility="Auto"
- VerticalScrollBarVisibility="Auto">
- <Grid>
- <Border Name="Panel_Print" BorderThickness="0" />
- <Border Name="Panel_Print1" Panel.ZIndex="10" />
- <Border Name="Panel_NotingPreview"
- Panel.ZIndex="9999"
- Visibility="Hidden">
- <Border HorizontalAlignment="Center"
- VerticalAlignment="Center"
- BorderBrush="Red"
- BorderThickness="2"
- Padding="5">
- <TextBlock FontFamily="SimSun"
- FontSize="25"
- FontWeight="Bold"
- Foreground="Red"
- Text="无预览:机密数据" />
- <Border.RenderTransform>
- <RotateTransform Angle="-10" CenterX="0.5" CenterY="0.5" />
- </Border.RenderTransform>
- </Border>
- </Border>
- </Grid>
- </ScrollViewer>
- <TextBlock Name="Text_Description"
- Grid.Row="2"
- Width="553"
- Margin="5,5,0,5"
- HorizontalAlignment="Left"
- FontSize="16"
- FontWeight="Bold"
- Text="详细信息" />
- </Grid>
- </Border>
- </UserControl>
|