CPDFBOTABarControl.xaml 1.3 KB

123456789101112131415161718192021222324
  1. <UserControl x:Class="ComPDFKit.Controls.PDFControl.CPDFBOTABarControl"
  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. mc:Ignorable="d"
  7. d:DesignHeight="800" d:DesignWidth="300" Loaded="CPDFBOTABarControl_OnLoaded">
  8. <UserControl.Resources>
  9. <ResourceDictionary>
  10. <ResourceDictionary.MergedDictionaries>
  11. <ResourceDictionary Source="../../Asset/Themes/Global.xaml"></ResourceDictionary>
  12. <ResourceDictionary Source="../../Asset/Styles/ToggleButtonStyle.xaml"></ResourceDictionary>
  13. </ResourceDictionary.MergedDictionaries>
  14. </ResourceDictionary>
  15. </UserControl.Resources>
  16. <Grid>
  17. <Grid.RowDefinitions>
  18. <RowDefinition Height="40"></RowDefinition>
  19. <RowDefinition></RowDefinition>
  20. </Grid.RowDefinitions>
  21. <StackPanel Name="BOTABarTitleGrid" Orientation="Horizontal" Background="#EFEFEF"></StackPanel>
  22. <Border x:Name="BotaToolContainer" Grid.Row="1"></Border>
  23. </Grid>
  24. </UserControl>