MeasurePropertyControl.xaml 1.2 KB

1234567891011121314151617
  1. <UserControl x:Class="ComPDFKit.Controls.Measure.MeasurePropertyControl"
  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.Measure"
  7. xmlns:common="clr-namespace:ComPDFKit.Controls.Common"
  8. mc:Ignorable="d"
  9. d:DesignHeight="800" d:DesignWidth="300" Background="#FAFCFF">
  10. <Grid>
  11. <Grid.Resources>
  12. <common:PropertyPanelResourceConverter x:Key="PropertyPanelResourceConverter" />
  13. </Grid.Resources>
  14. <TextBlock Name="NoResultText" Foreground="#43474D" Text="{Binding Converter={StaticResource PropertyPanelResourceConverter},ConverterParameter=Text_EmptyPanel}" FontSize="14" LineHeight="16" TextWrapping="Wrap" Width="190" TextAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center"></TextBlock>
  15. <Border x:Name="MeasurePropertyPanel"></Border>
  16. </Grid>
  17. </UserControl>