DashboardPage.xaml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <Page x:Class="Agent.Views.DashboardPage"
  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. mc:Ignorable="d"
  7. Width="Auto"
  8. Height="Auto"
  9. Title="DashboardPage"
  10. d:DesignHeight="441" d:DesignWidth="639">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="0.5*"/>
  14. <RowDefinition Height="0.5*"/>
  15. </Grid.RowDefinitions>
  16. <Grid.ColumnDefinitions>
  17. <ColumnDefinition Width="0.34*"/>
  18. <ColumnDefinition Width="0.33*"/>
  19. <ColumnDefinition Width="0.33*"/>
  20. </Grid.ColumnDefinitions>
  21. <Grid x:Name="DriveBody" Grid.Row="0" Grid.Column="0" Margin="0,0,2.5,2.5" Background="#6C7886">
  22. <StackPanel>
  23. <TextBlock x:Name="DriveHeader" Padding="15,13.5" Text="드라이브 용량" Foreground="#fff" Background="#596470" FontSize="14"/>
  24. <TextBlock Padding="15,10" Text="전체 사용 공간" Foreground="#fff"/>
  25. <TextBlock x:Name="DriveUsingSpaceTextBox" Padding="15,0" FontSize="30" FontWeight="Bold" Text="점검중" Foreground="#fff"/>
  26. <TextBlock Padding="15,10" Text="전체 여유 공간" Foreground="#fff"/>
  27. <TextBlock x:Name="DriveFreeSpaceTextBox" Padding="15,0" FontSize="30" FontWeight="Bold" Text="점검중" Foreground="#fff"/>
  28. </StackPanel>
  29. </Grid>
  30. <Grid x:Name="StorageBody" Grid.Row="0" Grid.Column="1" Margin="2.5,0,2.5,2.5" Background="#6C7886">
  31. <StackPanel>
  32. <TextBlock x:Name="StorageHeader" Padding="15,13.5" Text="서버 스토리지" Foreground="#fff" Background="#596470" FontSize="14"/>
  33. <TextBlock Padding="15,10" Text="연결 여부" Foreground="#fff"/>
  34. <TextBlock x:Name="StorageTextBox" Padding="15,0" Text="점검중" FontSize="30" FontWeight="Bold" Foreground="#fff"/>
  35. </StackPanel>
  36. </Grid>
  37. <Grid x:Name="SuccessBody" Grid.Row="0" Grid.Column="2" Margin="2.5,0,0,2.5" Background="#6C7886">
  38. <StackPanel ToolTip="더블클릭 시 정책 메뉴로 이동합니다" MouseDown="Success_MouseDown">
  39. <TextBlock x:Name="SuccessHeader" Padding="15,13.5" Text="연결된 백업파일" Foreground="#fff" Background="#596470" FontSize="14"/>
  40. <TextBlock Padding="15,10" Text="연결된 백업파일 개수" Foreground="#fff"/>
  41. <TextBlock x:Name="SuccessTextBox" Padding="15,0" Text="0개" FontSize="30" FontWeight="Bold" Foreground="#fff"/>
  42. </StackPanel>
  43. </Grid>
  44. <Grid x:Name="SyncBody" Grid.Row="1" Grid.Column="0" Margin="0,2.5,2.5,0" Background="#6C7886">
  45. <StackPanel>
  46. <TextBlock x:Name="SyncHeader" Padding="15,13.5" Text="최근 동기화" Foreground="#fff" Background="#596470" FontSize="14"/>
  47. <TextBlock Padding="15,10" Text="마지막 백업 동작시간" Foreground="#fff"/>
  48. <TextBlock x:Name="SyncTextBox" Padding="15,0" Text="점검중" FontSize="30" FontWeight="Bold" Foreground="#fff"/>
  49. </StackPanel>
  50. </Grid>
  51. <Grid x:Name="MonitorBody" Grid.Row="1" Grid.Column="1" Margin="2.5,2.5,2.5,0" Background="#6C7886">
  52. <StackPanel>
  53. <TextBlock x:Name="MonitorHeader" Padding="15,13.5" Text="파일 감시" Foreground="#fff" Background="#596470" FontSize="14"/>
  54. <TextBlock Padding="15,10" Text="스케줄러 동작 여부" Foreground="#fff"/>
  55. <TextBlock x:Name="MonitorTextBox" Padding="15,0" Text="대기중.." FontSize="30" FontWeight="Bold" Foreground="#fff"/>
  56. </StackPanel>
  57. </Grid>
  58. <Grid x:Name="FailBody" Grid.Row="1" Grid.Column="2" Margin="2.5,2.5,0,0" Background="#6C7886">
  59. <StackPanel ToolTip="더블클릭 시 레포트 메뉴로 이동합니다" MouseDown="Fail_MouseDown">
  60. <TextBlock x:Name="FailHeader" Padding="15,13.5" Text="실패한 백업파일" Foreground="#fff" Background="#596470" FontSize="14"/>
  61. <TextBlock Padding="15,10" Text="실패한 백업파일 개수" Foreground="#fff"/>
  62. <TextBlock x:Name="FailTextBox" Padding="15,0" Text="점검중" FontSize="30" FontWeight="Bold" Foreground="#fff"/>
  63. </StackPanel>
  64. </Grid>
  65. </Grid>
  66. </Page>