12345678910111213141516171819202122232425262728293031 |
- <UserControl x:Class="PDF_Office.Views.PropertyPanel.PropertyPanelContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Office.Views.PropertyPanel"
- xmlns:AnnotPanel="clr-namespace:PDF_Office.Views.PropertyPanel.AnnotPanel"
- xmlns:Convert="clr-namespace:PDF_Office.DataConvert"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- xmlns:PropertyPanel="clr-namespace:PDF_Office.ViewModels.PropertyPanel"
- d:DataContext="{d:DesignInstance Type=PropertyPanel:PropertyPanelContentViewModel}"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <UserControl.Resources>
- <Convert:PropertyPanelVisible x:Key="PropertyPanelVisible"/>
- </UserControl.Resources>
- <Grid VerticalAlignment="Stretch">
- <Grid>
- <StackPanel VerticalAlignment="Center" x:Name="NoStampStackPanel">
- <Image Width="128" Height="128" Source="pack://application:,,,/PDF Office;component/Resources/PropertyPanel/EmptyAnnot.png" />
- <TextBlock Width="128" FontSize="12" FontFamily="Segoe UI" TextWrapping="Wrap" Foreground="#94989C"
- Text="Show/Hide Annotation Properties Panel" TextAlignment="Center"
- HorizontalAlignment="Center"/>
-
- </StackPanel>
- </Grid>
-
- </Grid>
- </UserControl>
|