|
|
|
<Window x:Class="SlnMesnac.WPF.Page.RecipeModeSetWindow"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:local="clr-namespace:SlnMesnac.WPF.Page"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
Title="模式设置" Height="300" Width="700" WindowStartupLocation="CenterScreen" Background="#73B0F5">
|
|
|
|
<Border Margin="5" Background="Transparent" CornerRadius="10">
|
|
|
|
<Border.Effect>
|
|
|
|
<DropShadowEffect Color="LightGoldenrodYellow" ShadowDepth="0" BlurRadius="5" Opacity="0.3" Direction="0"></DropShadowEffect>
|
|
|
|
</Border.Effect>
|
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
|
|
|
|
|
|
|
<RowDefinition Height="2*"/>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
<TextBlock Grid.Row="0" Text="手动切换配方选择" FontSize="26" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
|
|
|
|
|
|
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Center" Margin="10,0">
|
|
|
|
<Button Content="低速配方" FontSize="20" Style="{StaticResource BUTTON_AGREE}" Width="150" Height="50" Background="#41CF77" BorderBrush="#FF36B5C1" Margin="0,0,30,0" Click="ChangeRecipeButton_Click" Tag="低速配方" />
|
|
|
|
<Button Content="中速配方" FontSize="20" Style="{StaticResource BUTTON_AGREE}" Width="150" Height="50" Background="#41CF77" BorderBrush="#FF36B5C1" Margin="0,0,30,0" Click="ChangeRecipeButton_Click" Tag="中速配方" />
|
|
|
|
<Button Content="高速配方" FontSize="20" Style="{StaticResource BUTTON_AGREE}" Width="150" Height="50" Background="#41CF77" BorderBrush="#FF36B5C1" Margin="0,0,30,0" Click="ChangeRecipeButton_Click" Tag="高速配方" />
|
|
|
|
|
|
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
</Window>
|