markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / MergeDataView.xaml @ a8f1a865
이력 | 보기 | 이력해설 | 다운로드 (1.97 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 | 60723dc9 | taeseongkim | xmlns:Behaviors="clr-namespace:Markus.Service.StationController.Behaviors" |
11 | 6f6e7dbf | taeseongkim | mc:Ignorable="d" |
12 | d:DesignHeight="450" d:DesignWidth="800"> |
||
13 | <Grid>
|
||
14 | <Grid.RowDefinitions>
|
||
15 | <RowDefinition Height="3.5*"/> |
||
16 | <RowDefinition Height="3.5*"/> |
||
17 | <RowDefinition Height="3.5*"/> |
||
18 | </Grid.RowDefinitions>
|
||
19 | 31f18afa | taeseongkim | <GroupBox Header="Service Alive Items" Margin="3" BorderThickness="0"> |
20 | b92f142f | taeseongkim | <Views:AliveView /> |
21 | 6f6e7dbf | taeseongkim | </GroupBox>
|
22 | 31f18afa | taeseongkim | <GroupBox Header="Error Items" Grid.Row="1" Margin="3" BorderThickness="0"> |
23 | 60723dc9 | taeseongkim | <Views:DataBaseByStatusView>
|
24 | <Behaviors:StatusTypeSet.StatusTypes>
|
||
25 | <markus:StatusCodeType>Error</markus:StatusCodeType> |
||
26 | </Behaviors:StatusTypeSet.StatusTypes>
|
||
27 | </Views:DataBaseByStatusView>
|
||
28 | 31f18afa | taeseongkim | </GroupBox>
|
29 | <GroupBox Header="Completed Items" Grid.Row="2" Margin="3" BorderThickness="0"> |
||
30 | 60723dc9 | taeseongkim | <Views:DataBaseByStatusView>
|
31 | <Behaviors:StatusTypeSet.StatusTypes>
|
||
32 | <markus:StatusCodeType>Error</markus:StatusCodeType> |
||
33 | </Behaviors:StatusTypeSet.StatusTypes>
|
||
34 | </Views:DataBaseByStatusView>
|
||
35 | 6f6e7dbf | taeseongkim | </GroupBox>
|
36 | |||
37 | </Grid>
|
||
38 | </UserControl> |