123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <Page x:Class="Agent.Views.DashboardPage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- mc:Ignorable="d"
- Width="Auto"
- Height="Auto"
- Title="DashboardPage"
- d:DesignHeight="441" d:DesignWidth="639">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="0.5*"/>
- <RowDefinition Height="0.5*"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="0.34*"/>
- <ColumnDefinition Width="0.33*"/>
- <ColumnDefinition Width="0.33*"/>
- </Grid.ColumnDefinitions>
- <Grid x:Name="DriveBody" Grid.Row="0" Grid.Column="0" Margin="0,0,2.5,2.5" Background="#6C7886">
- <StackPanel>
- <TextBlock x:Name="DriveHeader" Padding="15,13.5" Text="드라이브 용량" Foreground="#fff" Background="#596470" FontSize="14"/>
- <TextBlock Padding="15,10" Text="전체 사용 공간" Foreground="#fff"/>
- <TextBlock x:Name="DriveUsingSpaceTextBox" Padding="15,0" FontSize="30" FontWeight="Bold" Text="점검중" Foreground="#fff"/>
- <TextBlock Padding="15,10" Text="전체 여유 공간" Foreground="#fff"/>
- <TextBlock x:Name="DriveFreeSpaceTextBox" Padding="15,0" FontSize="30" FontWeight="Bold" Text="점검중" Foreground="#fff"/>
- </StackPanel>
- </Grid>
- <Grid x:Name="StorageBody" Grid.Row="0" Grid.Column="1" Margin="2.5,0,2.5,2.5" Background="#6C7886">
- <StackPanel>
- <TextBlock x:Name="StorageHeader" Padding="15,13.5" Text="서버 스토리지" Foreground="#fff" Background="#596470" FontSize="14"/>
- <TextBlock Padding="15,10" Text="연결 여부" Foreground="#fff"/>
- <TextBlock x:Name="StorageTextBox" Padding="15,0" Text="점검중" FontSize="30" FontWeight="Bold" Foreground="#fff"/>
- </StackPanel>
- </Grid>
- <Grid x:Name="SuccessBody" Grid.Row="0" Grid.Column="2" Margin="2.5,0,0,2.5" Background="#6C7886">
- <StackPanel ToolTip="더블클릭 시 정책 메뉴로 이동합니다" MouseDown="Success_MouseDown">
- <TextBlock x:Name="SuccessHeader" Padding="15,13.5" Text="연결된 백업파일" Foreground="#fff" Background="#596470" FontSize="14"/>
- <TextBlock Padding="15,10" Text="연결된 백업파일 개수" Foreground="#fff"/>
- <TextBlock x:Name="SuccessTextBox" Padding="15,0" Text="0개" FontSize="30" FontWeight="Bold" Foreground="#fff"/>
- </StackPanel>
- </Grid>
- <Grid x:Name="SyncBody" Grid.Row="1" Grid.Column="0" Margin="0,2.5,2.5,0" Background="#6C7886">
- <StackPanel>
- <TextBlock x:Name="SyncHeader" Padding="15,13.5" Text="최근 동기화" Foreground="#fff" Background="#596470" FontSize="14"/>
- <TextBlock Padding="15,10" Text="마지막 백업 동작시간" Foreground="#fff"/>
- <TextBlock x:Name="SyncTextBox" Padding="15,0" Text="점검중" FontSize="30" FontWeight="Bold" Foreground="#fff"/>
- </StackPanel>
- </Grid>
- <Grid x:Name="MonitorBody" Grid.Row="1" Grid.Column="1" Margin="2.5,2.5,2.5,0" Background="#6C7886">
- <StackPanel>
- <TextBlock x:Name="MonitorHeader" Padding="15,13.5" Text="파일 감시" Foreground="#fff" Background="#596470" FontSize="14"/>
- <TextBlock Padding="15,10" Text="스케줄러 동작 여부" Foreground="#fff"/>
- <TextBlock x:Name="MonitorTextBox" Padding="15,0" Text="대기중.." FontSize="30" FontWeight="Bold" Foreground="#fff"/>
- </StackPanel>
- </Grid>
- <Grid x:Name="FailBody" Grid.Row="1" Grid.Column="2" Margin="2.5,2.5,0,0" Background="#6C7886">
- <StackPanel ToolTip="더블클릭 시 레포트 메뉴로 이동합니다" MouseDown="Fail_MouseDown">
- <TextBlock x:Name="FailHeader" Padding="15,13.5" Text="실패한 백업파일" Foreground="#fff" Background="#596470" FontSize="14"/>
- <TextBlock Padding="15,10" Text="실패한 백업파일 개수" Foreground="#fff"/>
- <TextBlock x:Name="FailTextBox" Padding="15,0" Text="점검중" FontSize="30" FontWeight="Bold" Foreground="#fff"/>
- </StackPanel>
- </Grid>
- </Grid>
- </Page>
|