|
|
|
@ -5,39 +5,39 @@
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:local="clr-namespace:SmartAquaViewer.View"
|
|
|
|
xmlns:local="clr-namespace:SmartAquaViewer.View"
|
|
|
|
xmlns:helper="clr-namespace:SmartAquaViewer.Helper"
|
|
|
|
xmlns:helper="clr-namespace:SmartAquaViewer.Helper"
|
|
|
|
|
|
|
|
xmlns:md="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
d:DesignHeight="940" d:DesignWidth="1650">
|
|
|
|
d:DesignHeight="940" d:DesignWidth="1650">
|
|
|
|
<Border>
|
|
|
|
<Border>
|
|
|
|
<Grid>
|
|
|
|
<md:DrawerHost BottomDrawerBackground="#122136" IsBottomDrawerOpen="{Binding IsOpenMode}" OpenMode="Standard">
|
|
|
|
|
|
|
|
<Grid Background="#243851">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
<RowDefinition x:Name="rdGraph" Height="450"/>
|
|
|
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
|
|
|
|
<Grid>
|
|
|
|
<Grid>
|
|
|
|
<Grid.Background>
|
|
|
|
<Grid.Background>
|
|
|
|
<ImageBrush ImageSource="/Resources/Images/top_bg.png" Stretch="Fill"/>
|
|
|
|
<ImageBrush ImageSource="/Resources/Images/top_bg.png" Stretch="Fill"/>
|
|
|
|
</Grid.Background>
|
|
|
|
</Grid.Background>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
|
|
<Border Grid.Row="1" Background="#243851" BorderThickness="0 0 0 3" BorderBrush="#455569">
|
|
|
|
<Grid Grid.Row="1" VerticalAlignment="Bottom">
|
|
|
|
<Grid>
|
|
|
|
<Button Name="btnVisibilityDown" Tag="down"
|
|
|
|
<Button Name="btnVisibilityDown" Tag="down" Click="btnVisibility_Click"
|
|
|
|
Style="{StaticResource ImageButtonStyle}" Height="33" Command="{Binding ChangeDrawerStatusCommand}"
|
|
|
|
Style="{StaticResource ImageButtonStyle}" Height="33"
|
|
|
|
VerticalAlignment="Bottom" HorizontalAlignment="Center" Visibility="{Binding BtnVisibilityDown}"
|
|
|
|
VerticalAlignment="Bottom" HorizontalAlignment="Center"
|
|
|
|
|
|
|
|
helper:ImageButtonHelper.ImageSource="/Resources/Images/arrow_down.png"/>
|
|
|
|
helper:ImageButtonHelper.ImageSource="/Resources/Images/arrow_down.png"/>
|
|
|
|
|
|
|
|
|
|
|
|
<Button Name="btnVisibilityUp" Tag="up" Click="btnVisibility_Click"
|
|
|
|
<Button Name="btnVisibilityUp" Tag="up"
|
|
|
|
Style="{StaticResource ImageButtonStyle}" Height="33"
|
|
|
|
Style="{StaticResource ImageButtonStyle}" Height="33" Command="{Binding ChangeDrawerStatusCommand}"
|
|
|
|
VerticalAlignment="Bottom" HorizontalAlignment="Center" Visibility="Collapsed"
|
|
|
|
VerticalAlignment="Bottom" HorizontalAlignment="Center" Visibility="{Binding BtnVisibilityUp}"
|
|
|
|
helper:ImageButtonHelper.ImageSource="/Resources/Images/arrow_up.png"/>
|
|
|
|
helper:ImageButtonHelper.ImageSource="/Resources/Images/arrow_up.png"/>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Grid Grid.Row="2" Background="#122136">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<md:DrawerHost.BottomDrawerContent>
|
|
|
|
|
|
|
|
<Border Height="450" BorderThickness="0 3 0 0" BorderBrush="#455569">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
</md:DrawerHost.BottomDrawerContent>
|
|
|
|
|
|
|
|
</md:DrawerHost>
|
|
|
|
</Border>
|
|
|
|
</Border>
|
|
|
|
</UserControl>
|
|
|
|
</UserControl>
|
|
|
|
|