123456789101112131415161718192021 |
- <UserControl
- x:Class="PDF_Office.Views.PropertyPanel.ViewModular.SplitScreenContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:AnnotPanel="clr-namespace:PDF_Office.Views.PropertyPanel.AnnotPanel"
- xmlns:Convert="clr-namespace:PDF_Office.DataConvert"
- xmlns:ViewModular="clr-namespace:PDF_Office.ViewModels.PropertyPanel.ViewModular"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Office.Views.PropertyPanel.ViewModular"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- Width="256"
- d:DataContext="{d:DesignInstance Type=ViewModular:SplitScreenContentViewModel}"
- d:DesignHeight="200"
- d:DesignWidth="256"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d">
- <Grid>
- <TextBlock FontSize="20" Text="分屏显示" />
- </Grid>
- </UserControl>
|