markus / KCOM / Controls / Explorer.xaml.cs @ dea3d68a
이력 | 보기 | 이력해설 | 다운로드 (825 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Windows; |
6 |
using System.Windows.Controls; |
7 |
using System.Windows.Data; |
8 |
using System.Windows.Documents; |
9 |
using System.Windows.Input; |
10 |
using System.Windows.Media; |
11 |
using System.Windows.Media.Imaging; |
12 |
using System.Windows.Navigation; |
13 |
using System.Windows.Shapes; |
14 |
using Telerik.Windows.Controls; |
15 |
|
16 |
namespace KCOM.Controls |
17 |
{ |
18 |
/// <summary> |
19 |
/// PageNavigator.xaml에 대한 상호 작용 논리 |
20 |
/// </summary> |
21 |
public partial class Explorer : UserControl |
22 |
{ |
23 |
public Explorer() |
24 |
{ |
25 |
InitializeComponent(); |
26 |
this.Loaded += Explorer_Loaded; |
27 |
|
28 |
} |
29 |
|
30 |
private void Explorer_Loaded(object sender, RoutedEventArgs e) |
31 |
{ |
32 |
|
33 |
} |
34 |
} |
35 |
} |