PDFSearch.xaml 1014 B

123456789101112131415161718
  1. <UserControl x:Class="viewer_ctrl_demo.Bota.PDFSearch"
  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:viewer_ctrl_demo.Bota"
  7. xmlns:tools="clr-namespace:compdfkit_tools;assembly=com.compdfkit.tools"
  8. mc:Ignorable="d"
  9. d:DesignHeight="450" d:DesignWidth="800">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="auto"></RowDefinition>
  13. <RowDefinition Height="*"></RowDefinition>
  14. </Grid.RowDefinitions>
  15. <tools:SearchInputControl Name="SearchInput" InputTextBoxHeight="25"></tools:SearchInputControl>
  16. <tools:SearchResultControl Name="SearchResult" Grid.Row="1"></tools:SearchResultControl>
  17. </Grid>
  18. </UserControl>