프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / KCOM / Controls / SearchPanel.xaml @ 999c9e40

이력 | 보기 | 이력해설 | 다운로드 (5.07 KB)

1
<UserControl x:Class="KCOM.Controls.SearchPanel"
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:KCOM.Controls"
7
             mc:Ignorable="d" Background="White"
8
             d:DesignHeight="900" d:DesignWidth="300">
9
    <Grid  Margin="10">
10
        <Grid.RowDefinitions>
11
            <RowDefinition Height="Auto"/>
12
            <RowDefinition Height="*"/>
13
        </Grid.RowDefinitions>
14
        <StackPanel Orientation="Vertical">
15
            <TextBlock Text="Search : " FontSize="15"/>
16
            <Grid Margin="0,10">
17
                <Grid.ColumnDefinitions>
18
                    <ColumnDefinition Width="8*"/>
19
                    <ColumnDefinition Width="2*"/>
20
                </Grid.ColumnDefinitions>
21
                <TextBox  Background="#FFF3F3F3" BorderThickness="0.5" VerticalContentAlignment="Center" x:Name="tbSearch"/>
22
                <Button Content="Search" Grid.Column="1" Padding="5" Background="#3d3d3d" Foreground="White" x:Name="btnSearch"/>
23
            </Grid>
24
            <GroupBox Header="Option List">
25
                <StackPanel Margin="1">
26
                    <CheckBox Content="Current page only" Margin="3" x:Name="chkCurrentPageOnly"/>
27
                </StackPanel>
28
            </GroupBox>
29
            <GroupBox Header="Search Mode">
30
                <StackPanel Margin="1">
31
                    <RadioButton GroupName="Search" Content="None - search as substring" IsChecked="True" Margin="3" Checked="chkSelectionChangeEvent"  Tag="0"/>
32
                    <RadioButton GroupName="Search" Content="Exact - search string as separate word" Margin="3" Checked="chkSelectionChangeEvent" Tag="1"/>
33
                    <RadioButton GroupName="Search" Content="Smart - find the word in various forms"  Margin="3" Checked="chkSelectionChangeEvent" Tag="2"/>
34
                </StackPanel>
35
                <!--<CheckBox Content="Match whole word" Margin="5"/>-->
36
            </GroupBox>
37

    
38

    
39
            <!--<TextBlock Text="Search word or phase in the current document,   and list the result" Margin="20,20" TextWrapping="WrapWithOverflow" Foreground="#FF7C7C7C" FontSize="12"/>-->
40
        </StackPanel>
41
        <ListBox x:Name="lstSearchWord" Grid.Row="1" BorderThickness="1" ScrollViewer.HorizontalScrollBarVisibility="Disabled"
42
                 ItemsSource="{Binding SearchSet}" SelectionChanged="lstSearchWord_SelectionChanged">
43
            <ListBox.ItemTemplate>
44
                <DataTemplate>
45
                    <StackPanel Orientation="Horizontal">
46
                        <Border Background="#FF0B4FC5" Margin="0,0,5,0" MinWidth="30">
47
                            <TextBlock Text="{Binding PageNo}" Padding="5" Foreground="White" HorizontalAlignment="Center"/>
48
                        </Border>
49
                        <TextBlock Text="  Text : "  FontWeight="DemiBold" VerticalAlignment="Center" Foreground="#FF0B4FC5" />
50
                        <TextBlock Text="{Binding searchResult.Text}" VerticalAlignment="Center"/>
51
                        <TextBlock Text="  Position : "  FontWeight="DemiBold" VerticalAlignment="Center" Foreground="#FF0B4FC5" />
52
                        <TextBlock Text="{Binding searchResult.Left, StringFormat=N1}" VerticalAlignment="Center"/>
53
                        <TextBlock Text=","  FontWeight="DemiBold" VerticalAlignment="Center"/>
54
                        <TextBlock Text="{Binding searchResult.Top, StringFormat=N1}" VerticalAlignment="Center"/>
55
                    </StackPanel>
56
                </DataTemplate>
57
            </ListBox.ItemTemplate>
58
            <!--<ListBox.ItemTemplate>
59
                <DataTemplate>
60
                    <Grid Width="{Binding Width, ElementName=lstSearchWord}">
61
                        --><!--<StackPanel>
62
                            <TextBlock Text="Page : 1" Foreground="{DynamicResource KCOMColor_MarkerBrush}" FontWeight="DemiBold"/>
63
                            <TextBlock Text="Weiss Ratings"
64
                                   TextWrapping="Wrap" Margin="0,2"/>
65
                            -->
66
                        <!--<TextBlock Text="{Binding}"/>-->
67
                        <!--
68
                        </StackPanel>--><!--
69
                    </Grid>
70
                </DataTemplate>
71
            </ListBox.ItemTemplate>-->
72
        </ListBox>
73

    
74
        <Border Background="Black" Grid.RowSpan="2"  Opacity="0.7" Margin="-10" x:Name="border_Overlap">
75
            <StackPanel VerticalAlignment="Center">
76
                <TextBlock x:Name="tlDonwloadState" Text="원활한 검색을 위해 데이터를 준비합니다" Foreground="White" HorizontalAlignment="Center" Margin="0,10" FontWeight="Bold"/>
77
                <Button Content="다운로드" Margin="5" HorizontalAlignment="Center" Padding="10" Background="#FF0080FF" Foreground="White" BorderThickness="0"
78
                        x:Name="btnSearchPDFDownload"/>
79
            </StackPanel>
80
        </Border>
81
    </Grid>
82
</UserControl>
클립보드 이미지 추가 (최대 크기: 500 MB)