forked from amkovkov/GranuSightSoftware2
60 lines
2.4 KiB
XML
60 lines
2.4 KiB
XML
<UserControl
|
|
x:Class="GSS2.Views.MainView"
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="using:GSS2.ViewModels"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
x:DataType="vm:MainViewModel">
|
|
|
|
<UserControl.Resources>
|
|
<SolidColorBrush x:Key="MainBackground" Color="#001e46" />
|
|
<SolidColorBrush x:Key="ButtonBackground" Color="#0865b2" />
|
|
<SolidColorBrush x:Key="ButtonForeground" Color="#ffffff" />
|
|
<x:Double x:Key="ButtonFontSize">20</x:Double>
|
|
</UserControl.Resources>
|
|
|
|
<UserControl.Styles>
|
|
|
|
<Style Selector="Button">
|
|
<Setter Property="HorizontalContentAlignment" Value="Center" />
|
|
<Setter Property="VerticalContentAlignment" Value="Center" />
|
|
<Setter Property="HorizontalAlignment" Value="Stretch" />
|
|
<Setter Property="VerticalAlignment" Value="Stretch"/>
|
|
<Setter Property="Background" Value="{StaticResource ButtonBackground}" />
|
|
<Setter Property="Foreground" Value="{StaticResource ButtonForeground}" />
|
|
</Style>
|
|
|
|
<Style Selector="TextBlock">
|
|
<Setter Property="TextWrapping" Value="Wrap"/>
|
|
<Setter Property="TextAlignment" Value="Center"/>
|
|
<Setter Property="FontSize" Value="{StaticResource ButtonFontSize}"/>
|
|
</Style>
|
|
|
|
</UserControl.Styles>
|
|
|
|
<Border Background="{StaticResource MainBackground}" BorderThickness="0">
|
|
<Grid ColumnSpacing="5" Margin="5">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Button Grid.Column="0" Command="{Binding NavigateToAmineContentAnalysisCommand}">
|
|
<TextBlock Text="Анализ на кондиционирующие добавки"/>
|
|
</Button>
|
|
|
|
<Button Grid.Column="1" Command="{Binding NavigateToColorimetricAnalysisCommand}" IsEnabled="False">
|
|
<TextBlock Text="Анализ цветности"/>
|
|
</Button>
|
|
|
|
<Button Grid.Column="2" Command="{Binding NavigateToGranulometricAnalysisCommand}" IsEnabled="False">
|
|
<TextBlock Text="Анализ гранулометрического состава"/>
|
|
</Button>
|
|
|
|
</Grid>
|
|
</Border>
|
|
|
|
</UserControl>
|