FromPropertyControl.xaml 1.3 KB

12345678910111213141516171819202122
  1. <UserControl x:Class="ComPDFKit.Controls.PDFControl.FromPropertyControl"
  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:ComPDFKit.Controls.PDFControl"
  7. xmlns:common="clr-namespace:ComPDFKit.Controls.Common"
  8. mc:Ignorable="d"
  9. Loaded="UserControl_Loaded"
  10. Unloaded="UserControl_Unloaded"
  11. Width="260" Background="#FAFCFF">
  12. <UserControl.Resources>
  13. <ResourceDictionary>
  14. <common:PropertyPanelResourceConverter x:Key="PropertyPanelResourceConverter"></common:PropertyPanelResourceConverter>
  15. </ResourceDictionary>
  16. </UserControl.Resources>
  17. <Grid>
  18. <TextBlock Name="NoResultText" Foreground="#43474D" Text="{Binding Converter={StaticResource PropertyPanelResourceConverter},ConverterParameter=Text_EmptyPanel}"
  19. FontSize="14" LineHeight="16" TextWrapping="Wrap" Width="190" TextAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center"></TextBlock>
  20. <Border x:Name="FromPropertyPanel"></Border>
  21. </Grid>
  22. </UserControl>