123456789101112131415161718 |
- <UserControl x:Class="viewer_ctrl_demo.Bota.PDFSearch"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:viewer_ctrl_demo.Bota"
- xmlns:tools="clr-namespace:compdfkit_tools;assembly=com.compdfkit.tools"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"></RowDefinition>
- <RowDefinition Height="*"></RowDefinition>
- </Grid.RowDefinitions>
- <tools:SearchInputControl Name="SearchInput" InputTextBoxHeight="25"></tools:SearchInputControl>
- <tools:SearchResultControl Name="SearchResult" Grid.Row="1"></tools:SearchResultControl>
- </Grid>
- </UserControl>
|