markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / MergeDataView.xaml @ 266a2d4f
이력 | 보기 | 이력해설 | 다운로드 (1.6 KB)
1 |
<UserControl xmlns:Views="clr-namespace:Markus.Service.StationController.Views" x:Class="Markus.Service.StationController.Views.MergeDataView" |
---|---|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
4 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
5 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
6 |
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes" |
7 |
xmlns:local="clr-namespace:Markus.Service.StationController.ViewModel" |
8 |
mc:Ignorable="d" |
9 |
d:DesignHeight="450" d:DesignWidth="800"> |
10 |
<UserControl.Resources>
|
11 |
</UserControl.Resources>
|
12 |
<Grid>
|
13 |
<Grid.RowDefinitions>
|
14 |
<RowDefinition Height="3.5*"/> |
15 |
<RowDefinition Height="3.5*"/> |
16 |
<RowDefinition Height="3.5*"/> |
17 |
</Grid.RowDefinitions>
|
18 |
<GroupBox Header="Service Alive Items" Style="{DynamicResource MaterialDesignGroupBox}" Margin="3" BorderThickness="0"> |
19 |
<Views:AliveView /> |
20 |
</GroupBox>
|
21 |
<GroupBox Header="Error Items" Grid.Row="1" materialDesign:ColorZoneAssist.Mode="Inverted" Style="{DynamicResource MaterialDesignGroupBox}" Margin="3" BorderThickness="0"> |
22 |
<Views:DataBaseByStatusView/> |
23 |
</GroupBox>
|
24 |
<GroupBox Header="Completed Items" Grid.Row="2" Style="{DynamicResource MaterialDesignGroupBox}" Margin="3" BorderThickness="0"> |
25 |
<Views:DataBaseByStatusView/> |
26 |
</GroupBox>
|
27 |
|
28 |
</Grid>
|
29 |
</UserControl>
|