|
|
|
|
@ -24,24 +24,22 @@
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="35"/>
|
|
|
|
|
<RowDefinition Height="100"/>
|
|
|
|
|
<RowDefinition Height="48"/>
|
|
|
|
|
<RowDefinition Height="92"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
|
|
<Border Grid.ColumnSpan="2">
|
|
|
|
|
<Border Grid.ColumnSpan="2" Background="#1D3649"
|
|
|
|
|
BorderBrush="#325C80" BorderThickness="0 0 0 1">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.Background>
|
|
|
|
|
<LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1" Opacity="0.61">
|
|
|
|
|
<GradientStop Color="#394861" Offset="0.0"/>
|
|
|
|
|
<GradientStop Color="#232839" Offset="1"/>
|
|
|
|
|
</LinearGradientBrush>
|
|
|
|
|
</Grid.Background>
|
|
|
|
|
<TextBlock x:Name="appTitle" Text="{Binding AppTitle}" FontFamily="{StaticResource SCDream6}"
|
|
|
|
|
Margin="20 0 0 0" Foreground="White"
|
|
|
|
|
Margin="20 0 0 0" Foreground="White" FontSize="16"
|
|
|
|
|
VerticalAlignment="Center"/>
|
|
|
|
|
|
|
|
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Top" WindowChrome.IsHitTestVisibleInChrome="True">
|
|
|
|
|
<Image Source="/Resources/Images/NIFS_logo_w.png"
|
|
|
|
|
HorizontalAlignment="Center" VerticalAlignment="Stretch"/>
|
|
|
|
|
|
|
|
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Center" WindowChrome.IsHitTestVisibleInChrome="True">
|
|
|
|
|
<Button Style="{StaticResource WindowChromeButtonStyle}" x:Name="windowMin" Content="━" Click="WindowMin_Click" FontSize="14" FontWeight="Bold"></Button>
|
|
|
|
|
<Button Style="{StaticResource WindowChromeButtonStyle}" x:Name="windowMax" Click="WindowMax_Click">
|
|
|
|
|
<StackPanel Orientation="Vertical">
|
|
|
|
|
@ -59,36 +57,28 @@
|
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
|
|
<Grid Grid.Row="1" Grid.RowSpan="2" Grid.ColumnSpan="2"
|
|
|
|
|
Background="#1E2241"/>
|
|
|
|
|
Background="#152935"/>
|
|
|
|
|
|
|
|
|
|
<Border Grid.Row="1" Grid.RowSpan="2" Margin="10"
|
|
|
|
|
BorderBrush="#2d374c" BorderThickness="2"> <!--파일 리스트-->
|
|
|
|
|
<view:FileListView x:Name="fileListView"/>
|
|
|
|
|
</Border>
|
|
|
|
|
<Border Grid.Row="1" Grid.Column="1" Margin="0 10 10 0">
|
|
|
|
|
<view:FileListView Grid.Row="1" Grid.RowSpan="2" x:Name="fileListView"/>
|
|
|
|
|
|
|
|
|
|
<Border Grid.Row="1" Grid.Column="1" Margin="16 12 16 0">
|
|
|
|
|
<UniformGrid Columns="4">
|
|
|
|
|
<RadioButton x:Name="rdbtnMonitoing" GroupName="contentSwap" Content="모니터링" Tag="monitoring"
|
|
|
|
|
Style="{StaticResource ImageRadioButtonStyle}" IsChecked="True" FontSize="30"
|
|
|
|
|
Style="{StaticResource RadioButtonTabStyle}" IsChecked="True" FontSize="30"
|
|
|
|
|
helper:RadioButtonHelper.UnPressedImage="/Resources/Images/tab_bg_off.png"
|
|
|
|
|
helper:RadioButtonHelper.PressedImage="/Resources/Images/tab_bg.png"
|
|
|
|
|
Command="{Binding SwapViewCommand}"
|
|
|
|
|
CommandParameter="{Binding Tag, RelativeSource={RelativeSource Self}}"/>
|
|
|
|
|
<RadioButton x:Name="rdbtnEnergy" GroupName="contentSwap" Content="에너지" Tag="energy"
|
|
|
|
|
Style="{StaticResource ImageRadioButtonStyle}" Grid.Column="1" FontSize="30"
|
|
|
|
|
helper:RadioButtonHelper.UnPressedImage="/Resources/Images/tab_bg_off.png"
|
|
|
|
|
helper:RadioButtonHelper.PressedImage="/Resources/Images/tab_bg.png"
|
|
|
|
|
Style="{StaticResource RadioButtonTabStyle}" Grid.Column="1" FontSize="30"
|
|
|
|
|
Command="{Binding SwapViewCommand}"
|
|
|
|
|
CommandParameter="{Binding Tag, RelativeSource={RelativeSource Self}}"/>
|
|
|
|
|
<RadioButton x:Name="rdBtnGreenHouseGas" GroupName="contentSwap" Content="온실가스" Tag="greenHouseGas"
|
|
|
|
|
Style="{StaticResource ImageRadioButtonStyle}" Grid.Column="2" FontSize="30"
|
|
|
|
|
helper:RadioButtonHelper.UnPressedImage="/Resources/Images/tab_bg_off.png"
|
|
|
|
|
helper:RadioButtonHelper.PressedImage="/Resources/Images/tab_bg.png"
|
|
|
|
|
Style="{StaticResource RadioButtonTabStyle}" Grid.Column="2" FontSize="30"
|
|
|
|
|
Command="{Binding SwapViewCommand}"
|
|
|
|
|
CommandParameter="{Binding Tag, RelativeSource={RelativeSource Self}}"/>
|
|
|
|
|
<RadioButton x:Name="rdbtnCCTV" GroupName="contentSwap" Content="CCTV" Tag="cctv"
|
|
|
|
|
Style="{StaticResource ImageRadioButtonStyle}" Grid.Column="3" FontSize="30"
|
|
|
|
|
helper:RadioButtonHelper.UnPressedImage="/Resources/Images/tab_bg_off.png"
|
|
|
|
|
helper:RadioButtonHelper.PressedImage="/Resources/Images/tab_bg.png"
|
|
|
|
|
Style="{StaticResource RadioButtonTabStyle}" Grid.Column="3" FontSize="30"
|
|
|
|
|
Command="{Binding SwapViewCommand}"
|
|
|
|
|
CommandParameter="{Binding Tag, RelativeSource={RelativeSource Self}}"/>
|
|
|
|
|
</UniformGrid>
|
|
|
|
|
|