CPDFPageEditBarControl.xaml 1.0 KB

1234567891011121314151617181920
  1. <UserControl x:Class="ComPDFKit.Controls.PDFControl.CPDFPageEditBarControl"
  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. mc:Ignorable="d"
  8. d:DesignHeight="40" d:DesignWidth="1280">
  9. <UserControl.Resources>
  10. <ResourceDictionary>
  11. <ResourceDictionary.MergedDictionaries>
  12. <ResourceDictionary Source="../../Asset/Styles/ToggleButtonStyle.xaml"></ResourceDictionary>
  13. </ResourceDictionary.MergedDictionaries>
  14. </ResourceDictionary>
  15. </UserControl.Resources>
  16. <Border BorderThickness="1">
  17. <StackPanel Name="FormGrid" Orientation="Horizontal" HorizontalAlignment="Center">
  18. </StackPanel>
  19. </Border>
  20. </UserControl>