markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / DataBaseByStatusView.xaml.cs @ b92f142f
이력 | 보기 | 이력해설 | 다운로드 (1.2 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 |
public static readonly DependencyProperty StatusTypeProperty = DependencyProperty.Register("StatusTypes", typeof(IList<string>), typeof(DataBaseByStatusView) |
30 |
,new FrameworkPropertyMetadata(){ BindsTwoWayByDefault=true }); |
31 |
|
32 |
public IList<StatusCodeType> StatusType |
33 |
{ |
34 |
get { return (IList<StatusCodeType>)GetValue(StatusTypeProperty); } |
35 |
set { SetValue(StatusTypeProperty, value); } |
36 |
} |
37 |
} |
38 |
} |