PropertyPanelContentEdit.xaml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <UserControl
  2. x:Class="PDF_Master.Views.PropertyPanel.PropertyPanelContentEdit"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:Convert="clr-namespace:PDF_Master.DataConvert"
  6. xmlns:PropertyPanel="clr-namespace:PDF_Master.ViewModels.PropertyPanel"
  7. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  8. xmlns:local="clr-namespace:PDF_Master.Views.PropertyPanel"
  9. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  10. xmlns:prism="http://prismlibrary.com/"
  11. d:DataContext="{d:DesignInstance Type=PropertyPanel:PropertyPanelContentEditViewModel}"
  12. d:DesignHeight="450"
  13. d:DesignWidth="800"
  14. prism:ViewModelLocator.AutoWireViewModel="True"
  15. Background="{StaticResource color.sys.layout.mg}"
  16. mc:Ignorable="d">
  17. <Grid VerticalAlignment="Stretch">
  18. <Grid>
  19. <StackPanel x:Name="NoStampStackPanel" VerticalAlignment="Center">
  20. <Image
  21. Width="128"
  22. Height="128"
  23. Source="pack://application:,,,/PDF Master;component/Resources/PropertyPanel/addimage.png" />
  24. <TextBlock
  25. HorizontalAlignment="Center"
  26. FontFamily="Segoe UI"
  27. FontSize="12"
  28. FontWeight="SemiBold"
  29. Foreground="#616469"
  30. Text="Add Image" />
  31. <TextBlock
  32. Width="168"
  33. Margin="0,2,0,0"
  34. HorizontalAlignment="Center"
  35. FontFamily="Segoe UI"
  36. FontSize="12"
  37. Foreground="#94989C"
  38. Text="Select an area on the page to insert the image."
  39. TextAlignment="Center"
  40. TextWrapping="Wrap" />
  41. </StackPanel>
  42. </Grid>
  43. </Grid>
  44. </UserControl>