You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
3.1 KiB
56 lines
3.1 KiB
<UserControl x:Class="SmartAquaViewer.View.MonitoringView"
|
|
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"
|
|
xmlns:local="clr-namespace:SmartAquaViewer.View"
|
|
xmlns:control="clr-namespace:SmartAquaViewer.Controls"
|
|
xmlns:helper="clr-namespace:SmartAquaViewer.Helper"
|
|
xmlns:md="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="940" d:DesignWidth="1650">
|
|
<Border>
|
|
<md:DrawerHost BottomDrawerBackground="#122136" IsBottomDrawerOpen="{Binding IsOpenMode}" OpenMode="Standard">
|
|
<Grid Background="#243851">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="70"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid>
|
|
<Grid.Background>
|
|
<ImageBrush ImageSource="/Resources/Images/top_bg.png" Stretch="Fill"/>
|
|
</Grid.Background>
|
|
<control:SegmentedControl x:Name="segmentedControl" Margin="10 10"
|
|
SelectedValue="{Binding CurrentSystem, Mode=TwoWay}"/>
|
|
</Grid>
|
|
|
|
<Grid Grid.Row="1" VerticalAlignment="Bottom">
|
|
<Button Name="btnVisibilityDown" Tag="down"
|
|
Style="{StaticResource ImageButtonStyle}" Height="33" Command="{Binding ChangeDrawerStatusCommand}"
|
|
VerticalAlignment="Bottom" HorizontalAlignment="Center" Visibility="{Binding BtnVisibilityDown}"
|
|
helper:ImageButtonHelper.ImageSource="/Resources/Images/arrow_down.png"/>
|
|
|
|
<Button Name="btnVisibilityUp" Tag="up"
|
|
Style="{StaticResource ImageButtonStyle}" Height="33" Command="{Binding ChangeDrawerStatusCommand}"
|
|
VerticalAlignment="Bottom" HorizontalAlignment="Center" Visibility="{Binding BtnVisibilityUp}"
|
|
helper:ImageButtonHelper.ImageSource="/Resources/Images/arrow_up.png"/>
|
|
</Grid>
|
|
</Grid>
|
|
<md:DrawerHost.BottomDrawerContent>
|
|
<Border Height="450" BorderThickness="0 3 0 0" BorderBrush="#455569">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="550"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Border Margin="50 35"
|
|
Background="#384659" BorderBrush="#404F63" BorderThickness="1" CornerRadius="10">
|
|
|
|
</Border>
|
|
</Grid>
|
|
</Border>
|
|
</md:DrawerHost.BottomDrawerContent>
|
|
</md:DrawerHost>
|
|
</Border>
|
|
</UserControl>
|