markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / MergeDataView.xaml @ b92f142f
이력 | 보기 | 이력해설 | 다운로드 (1.49 KB)
1 |
<UserControl xmlns:Views="clr-namespace:Markus.Service.StationController.Views" |
---|---|
2 |
x:Class="Markus.Service.StationController.Views.MergeDataView" |
3 |
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 |
xmlns:markus="clr-namespace:Markus.Message;assembly=Markus.Message" |
8 |
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
9 |
xmlns:local="clr-namespace:Markus.Service.StationController.ViewModel" |
10 |
mc:Ignorable="d" |
11 |
d:DesignHeight="450" d:DesignWidth="800"> |
12 |
<UserControl.Resources>
|
13 |
</UserControl.Resources>
|
14 |
<Grid>
|
15 |
<Grid.RowDefinitions>
|
16 |
<RowDefinition Height="3.5*"/> |
17 |
<RowDefinition Height="3.5*"/> |
18 |
<RowDefinition Height="3.5*"/> |
19 |
</Grid.RowDefinitions>
|
20 |
<GroupBox Header="Service Alive Items" Margin="3" BorderThickness="0"> |
21 |
<Views:AliveView /> |
22 |
</GroupBox>
|
23 |
<GroupBox Header="Error Items" Grid.Row="1" Margin="3" BorderThickness="0"> |
24 |
<Views:DataBaseByStatusView/> |
25 |
</GroupBox>
|
26 |
<GroupBox Header="Completed Items" Grid.Row="2" Margin="3" BorderThickness="0"> |
27 |
<Views:DataBaseByStatusView/> |
28 |
</GroupBox>
|
29 |
|
30 |
</Grid>
|
31 |
</UserControl>
|