PropertyPanelContent.xaml 1.5 KB

12345678910111213141516171819202122
  1. <UserControl x:Class="PDF_Office.Views.PropertyPanel.PropertyPanelContent"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PDF_Office.Views.PropertyPanel"
  7. xmlns:AnnotPanel="clr-namespace:PDF_Office.Views.PropertyPanel.AnnotPanel"
  8. xmlns:Convert="clr-namespace:PDF_Office.DataConvert"
  9. xmlns:prism="http://prismlibrary.com/"
  10. prism:ViewModelLocator.AutoWireViewModel="True"
  11. xmlns:PropertyPanel="clr-namespace:PDF_Office.ViewModels.PropertyPanel"
  12. d:DataContext="{d:DesignInstance Type=PropertyPanel:PropertyPanelContentViewModel}"
  13. mc:Ignorable="d"
  14. d:DesignHeight="450" d:DesignWidth="800">
  15. <Grid VerticalAlignment="Stretch">
  16. <StackPanel Name="PropEmpty" Margin="28 0 28 0" Grid.Column="4" VerticalAlignment="Center">
  17. <Image Width="140" Height="140" Source="../../Resources/PropertyPanel/propertybar_empty.png" RenderOptions.BitmapScalingMode="HighQuality" UseLayoutRounding="True"/>
  18. <TextBlock Name="txtPropEmpty" Text="Show/Hide Annotation Properties Panel" Width="200" TextWrapping="Wrap" Margin="0,7,0,0" TextAlignment="Center" FontFamily="Segoe UI" FontSize="16"/>
  19. </StackPanel>
  20. </Grid>
  21. </UserControl>