123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <UserControl
- x:Class="PDF_Master.Views.PropertyPanel.PropertyPanelContentEdit"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:Convert="clr-namespace:PDF_Master.DataConvert"
- xmlns:PropertyPanel="clr-namespace:PDF_Master.ViewModels.PropertyPanel"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Master.Views.PropertyPanel"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- d:DataContext="{d:DesignInstance Type=PropertyPanel:PropertyPanelContentEditViewModel}"
- d:DesignHeight="450"
- d:DesignWidth="800"
- prism:ViewModelLocator.AutoWireViewModel="True"
- Background="{StaticResource color.sys.layout.mg}"
- mc:Ignorable="d">
- <Grid VerticalAlignment="Stretch">
- <Grid>
- <StackPanel x:Name="NoStampStackPanel" VerticalAlignment="Center">
- <Image
- Width="128"
- Height="128"
- Source="pack://application:,,,/PDF Master;component/Resources/PropertyPanel/addimage.png" />
- <TextBlock
- HorizontalAlignment="Center"
- FontFamily="Segoe UI"
- FontSize="12"
- FontWeight="SemiBold"
- Foreground="#616469"
- Text="Add Image" />
- <TextBlock
- Width="168"
- Margin="0,2,0,0"
- HorizontalAlignment="Center"
- FontFamily="Segoe UI"
- FontSize="12"
- Foreground="#94989C"
- Text="Select an area on the page to insert the image."
- TextAlignment="Center"
- TextWrapping="Wrap" />
- </StackPanel>
- </Grid>
- </Grid>
- </UserControl>
|