markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / MergeDataView.xaml @ 06f13e11
이력 | 보기 | 이력해설 | 다운로드 (1.5 KB)
1 | 06f13e11 | taeseongkim | <UserControl xmlns:Views="clr-namespace:Markus.Service.StationController.Views" x:Class="Markus.Service.StationController.Views.MergeDataView" |
---|---|---|---|
2 | 6f6e7dbf | taeseongkim | 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 | <Grid>
|
||
11 | <Grid.RowDefinitions>
|
||
12 | <RowDefinition Height="3.5*"/> |
||
13 | <RowDefinition Height="3.5*"/> |
||
14 | <RowDefinition Height="3.5*"/> |
||
15 | </Grid.RowDefinitions>
|
||
16 | <GroupBox Header="Service Alive Items" Style="{DynamicResource MaterialDesignGroupBox}" Margin="3" BorderThickness="0"> |
||
17 | <Views:AliveView /> |
||
18 | </GroupBox>
|
||
19 | <GroupBox Header="Error Items" Grid.Row="1" Style="{DynamicResource MaterialDesignGroupBox}" Margin="3" BorderThickness="0"> |
||
20 | <Views:DataBaseByStatusView/> |
||
21 | </GroupBox>
|
||
22 | <GroupBox Header="Completed Items" Grid.Row="2" Style="{DynamicResource MaterialDesignGroupBox}" Margin="3" BorderThickness="0"> |
||
23 | <Views:DataBaseByStatusView/> |
||
24 | </GroupBox>
|
||
25 | |||
26 | </Grid>
|
||
27 | </UserControl> |