markus / KCOM / Controls / SearchPanel.xaml.cs @ 7ca218b3
이력 | 보기 | 이력해설 | 다운로드 (1.2 KB)
1 |
using MarkupToPDF.Common; |
---|---|
2 |
using System; |
3 |
using System.Collections.Generic; |
4 |
using System.Linq; |
5 |
using System.Text; |
6 |
using System.Windows; |
7 |
using System.Windows.Controls; |
8 |
using System.Windows.Data; |
9 |
using System.Windows.Documents; |
10 |
using System.Windows.Input; |
11 |
using System.Windows.Media; |
12 |
using System.Windows.Media.Imaging; |
13 |
using System.Windows.Navigation; |
14 |
using System.Windows.Shapes; |
15 |
|
16 |
namespace KCOM.Controls |
17 |
{ |
18 |
/// <summary> |
19 |
/// Interaction logic for SearchPanel.xaml |
20 |
/// </summary> |
21 |
public partial class SearchPanel : UserControl |
22 |
{ |
23 |
List<HoneyheadTEXT> txtSet = new List<HoneyheadTEXT>(); |
24 |
public SearchPanel() |
25 |
{ |
26 |
InitializeComponent(); |
27 |
this.Loaded += SearchPanel_Loaded; |
28 |
btnSearch.Click += BtnSearch_Click; |
29 |
} |
30 |
|
31 |
private void BtnSearch_Click(object sender, RoutedEventArgs e) |
32 |
{ |
33 |
|
34 |
//if (txtSet.Count == 0) |
35 |
//{ |
36 |
// TextSearch textSearch = new MarkupToPDF.Common.TextSearch(); |
37 |
// SearchText |
38 |
//} |
39 |
} |
40 |
|
41 |
private void SearchPanel_Loaded(object sender, RoutedEventArgs e) |
42 |
{ |
43 |
//lstSearchWord.ItemsSource = testNet; |
44 |
} |
45 |
} |
46 |
} |