markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / MergeDataView.xaml @ 2bbea412
이력 | 보기 | 이력해설 | 다운로드 (2.35 KB)
1 | 31f18afa | taeseongkim | <UserControl xmlns:Views="clr-namespace:Markus.Service.StationController.Views" |
---|---|---|---|
2 | x:Class="Markus.Service.StationController.Views.MergeDataView" |
||
3 | 6f6e7dbf | taeseongkim | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
4 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||
5 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||
6 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||
7 | b92f142f | taeseongkim | xmlns:markus="clr-namespace:Markus.Message;assembly=Markus.Message" |
8 | 31f18afa | taeseongkim | xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
9 | 6f6e7dbf | taeseongkim | xmlns:local="clr-namespace:Markus.Service.StationController.ViewModel" |
10 | f363a40e | taeseongkim | xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" |
11 | 60723dc9 | taeseongkim | xmlns:Behaviors="clr-namespace:Markus.Service.StationController.Behaviors" |
12 | 6f6e7dbf | taeseongkim | mc:Ignorable="d" |
13 | d:DesignHeight="450" d:DesignWidth="800"> |
||
14 | f363a40e | taeseongkim | <UserControl.Resources>
|
15 | <x:Array x:Key="FilterTypes" Type="{x:Type markus:StatusCodeType}" > |
||
16 | <markus:StatusCodeType>Error</markus:StatusCodeType> |
||
17 | <markus:StatusCodeType>Completed</markus:StatusCodeType> |
||
18 | </x:Array>
|
||
19 | </UserControl.Resources>
|
||
20 | 6f6e7dbf | taeseongkim | <Grid>
|
21 | <Grid.RowDefinitions>
|
||
22 | <RowDefinition Height="3.5*"/> |
||
23 | <RowDefinition Height="3.5*"/> |
||
24 | <RowDefinition Height="3.5*"/> |
||
25 | </Grid.RowDefinitions>
|
||
26 | 31f18afa | taeseongkim | <GroupBox Header="Service Alive Items" Margin="3" BorderThickness="0"> |
27 | b92f142f | taeseongkim | <Views:AliveView /> |
28 | 6f6e7dbf | taeseongkim | </GroupBox>
|
29 | 31f18afa | taeseongkim | <GroupBox Header="Error Items" Grid.Row="1" Margin="3" BorderThickness="0"> |
30 | 60723dc9 | taeseongkim | <Views:DataBaseByStatusView>
|
31 | f363a40e | taeseongkim | <i:Interaction.Behaviors>
|
32 | <Behaviors:StatusTypeSet StatusTypes="{StaticResource FilterTypes}"/> |
||
33 | </i:Interaction.Behaviors>
|
||
34 | 60723dc9 | taeseongkim | </Views:DataBaseByStatusView>
|
35 | 31f18afa | taeseongkim | </GroupBox>
|
36 | <GroupBox Header="Completed Items" Grid.Row="2" Margin="3" BorderThickness="0"> |
||
37 | 60723dc9 | taeseongkim | <Views:DataBaseByStatusView>
|
38 | f363a40e | taeseongkim | <!--<Behaviors:StatusTypeSet.StatusTypes>
|
39 | 60723dc9 | taeseongkim | <markus:StatusCodeType>Error</markus:StatusCodeType>
|
40 | f363a40e | taeseongkim | </Behaviors:StatusTypeSet.StatusTypes>-->
|
41 | 60723dc9 | taeseongkim | </Views:DataBaseByStatusView>
|
42 | 6f6e7dbf | taeseongkim | </GroupBox>
|
43 | |||
44 | </Grid>
|
||
45 | </UserControl> |