12345678910111213141516171819202122232425262728293031323334 |
- <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 x:Name="GridAnnot">
- <!--<AnnotPanel:TextAnnotProperty x:Name="textAnnotProperty" Visibility="{Binding AnnotPanelType,ConverterParameter=HighLight, Converter={StaticResource PropertyPanelVisible}}"/>-->
- <!--<AnnotPanel:FreetextAnnotProperty x:Name="freetextAnnotProperty" Visibility="{Binding AnnotPanelType,ConverterParameter=Freetext,Converter={StaticResource PropertyPanelVisible}}"/>
- <AnnotPanel:SharpsAnnotProperty x:Name="sharpsAnnotProperty" Visibility="{Binding AnnotPanelType,ConverterParameter=HighLight,Converter={StaticResource PropertyPanelVisible}}"/>
- <AnnotPanel:StampAnnotProperty x:Name="stampAnnotProperty" Visibility="{Binding AnnotPanelType,ConverterParameter=HighLight,Converter={StaticResource PropertyPanelVisible}}"/>
- <AnnotPanel:FreehandAnnotProperty x:Name="freehandAnnotProperty" Visibility="{Binding AnnotPanelType,ConverterParameter=HighLight,Converter={StaticResource PropertyPanelVisible}}"/>
- <AnnotPanel:ImageAnnotProperty x:Name="imageAnnotProperty" Visibility="{Binding AnnotPanelType,ConverterParameter=HighLight,Converter={StaticResource PropertyPanelVisible}}"/>
- <AnnotPanel:LinkAnnotProperty x:Name="linkAnnotProperty" Visibility="{Binding AnnotPanelType,ConverterParameter=HighLight,Converter={StaticResource PropertyPanelVisible}}"/>-->
- </Grid>
- <Grid>
-
- </Grid>
-
- </Grid>
- </UserControl>
|