markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / DataBaseByStatusView.xaml.cs @ 67df8dcd
이력 | 보기 | 이력해설 | 다운로드 (1.21 KB)
1 |
using Markus.Message; |
---|---|
2 |
using System; |
3 |
using System.Collections.Generic; |
4 |
using System.Linq; |
5 |
using System.Text; |
6 |
using System.Threading.Tasks; |
7 |
using System.Windows; |
8 |
using System.Windows.Controls; |
9 |
using System.Windows.Data; |
10 |
using System.Windows.Documents; |
11 |
using System.Windows.Input; |
12 |
using System.Windows.Media; |
13 |
using System.Windows.Media.Imaging; |
14 |
using System.Windows.Navigation; |
15 |
using System.Windows.Shapes; |
16 |
|
17 |
namespace Markus.Service.StationController.Views |
18 |
{ |
19 |
/// <summary> |
20 |
/// AliveView.xaml에 대한 상호 작용 논리 |
21 |
/// </summary> |
22 |
public partial class DataBaseByStatusView : UserControl |
23 |
{ |
24 |
public DataBaseByStatusView() |
25 |
{ |
26 |
InitializeComponent(); |
27 |
} |
28 |
|
29 |
|
30 |
#region Static Property Defines |
31 |
public static readonly DependencyProperty SelectedItemProperty = |
32 |
DependencyProperty.RegisterAttached("SelectedItem", typeof(Interface.ConvertItem), typeof(DataBaseByStatusView)); |
33 |
#endregion |
34 |
|
35 |
#region Property |
36 |
public Interface.ConvertItem SelectedItem |
37 |
{ |
38 |
get { return (Interface.ConvertItem)GetValue(SelectedItemProperty); } |
39 |
set { SetValue(SelectedItemProperty, value); } |
40 |
} |
41 |
#endregion |
42 |
} |
43 |
} |