SplitScreenContent.xaml 1017 B

123456789101112131415161718192021
  1. <UserControl
  2. x:Class="PDF_Office.Views.PropertyPanel.ViewModular.SplitScreenContent"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:AnnotPanel="clr-namespace:PDF_Office.Views.PropertyPanel.AnnotPanel"
  6. xmlns:Convert="clr-namespace:PDF_Office.DataConvert"
  7. xmlns:ViewModular="clr-namespace:PDF_Office.ViewModels.PropertyPanel.ViewModular"
  8. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  9. xmlns:local="clr-namespace:PDF_Office.Views.PropertyPanel.ViewModular"
  10. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  11. xmlns:prism="http://prismlibrary.com/"
  12. Width="256"
  13. d:DataContext="{d:DesignInstance Type=ViewModular:SplitScreenContentViewModel}"
  14. d:DesignHeight="200"
  15. d:DesignWidth="256"
  16. prism:ViewModelLocator.AutoWireViewModel="True"
  17. mc:Ignorable="d">
  18. <Grid>
  19. <TextBlock FontSize="20" Text="分屏显示" />
  20. </Grid>
  21. </UserControl>