前端转vue

PrintPreviewContent.xaml 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <UserControl x:Class="Platform.Print.PrintPreviewContent"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4. <Border>
  5. <Grid Margin="10">
  6. <Grid.RowDefinitions>
  7. <RowDefinition Height="30" />
  8. <RowDefinition Height="*" />
  9. <RowDefinition Height="50" />
  10. </Grid.RowDefinitions>
  11. <Grid.ColumnDefinitions>
  12. <ColumnDefinition Width="*" />
  13. <ColumnDefinition Width="100" />
  14. <ColumnDefinition Width="100" />
  15. </Grid.ColumnDefinitions>
  16. <TextBlock Name="Text_Title"
  17. Grid.Row="0"
  18. Grid.ColumnSpan="3"
  19. Height="30"
  20. FontSize="20"
  21. FontWeight="Bold"
  22. LineHeight="20"
  23. Text="表单名称" />
  24. <ScrollViewer Grid.Row="1"
  25. Grid.ColumnSpan="3"
  26. Margin="5"
  27. HorizontalScrollBarVisibility="Auto"
  28. VerticalScrollBarVisibility="Auto">
  29. <Grid>
  30. <Border Name="Panel_Print" BorderThickness="0" />
  31. <Border Name="Panel_Print1" Panel.ZIndex="10" />
  32. <Border Name="Panel_NotingPreview"
  33. Panel.ZIndex="9999"
  34. Visibility="Hidden">
  35. <Border HorizontalAlignment="Center"
  36. VerticalAlignment="Center"
  37. BorderBrush="Red"
  38. BorderThickness="2"
  39. Padding="5">
  40. <TextBlock FontFamily="SimSun"
  41. FontSize="25"
  42. FontWeight="Bold"
  43. Foreground="Red"
  44. Text="无预览:机密数据" />
  45. <Border.RenderTransform>
  46. <RotateTransform Angle="-10" CenterX="0.5" CenterY="0.5" />
  47. </Border.RenderTransform>
  48. </Border>
  49. </Border>
  50. </Grid>
  51. </ScrollViewer>
  52. <TextBlock Name="Text_Description"
  53. Grid.Row="2"
  54. Width="553"
  55. Margin="5,5,0,5"
  56. HorizontalAlignment="Left"
  57. FontSize="16"
  58. FontWeight="Bold"
  59. Text="详细信息" />
  60. </Grid>
  61. </Border>
  62. </UserControl>