You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
2.2 KiB
Plaintext
29 lines
2.2 KiB
Plaintext
3 months ago
|
<Window x:Class="SlnMesnac.WPF.Page.InputDialogWindow"
|
||
|
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"
|
||
2 months ago
|
Title="重量设置" Height="300" Width="900" WindowStartupLocation="CenterScreen" Background="#73B0F5">
|
||
3 months ago
|
<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>
|
||
|
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Orientation="Horizontal">
|
||
2 months ago
|
<TextBlock Text="最小重量阈值:" FontSize="25" VerticalAlignment="Center" Width="200" Margin="0,0,20,0" Foreground="Black" HorizontalAlignment="Left"/>
|
||
|
<TextBox x:Name="MinWeightTxt" Width="100" FontSize="25" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="Black" BorderThickness="3" BorderBrush="Black"/>
|
||
3 months ago
|
<TextBlock Text="最大重量阈值:" FontSize="25" VerticalAlignment="Center" Width="200" Margin="0,0,20,0" Foreground="Black" HorizontalAlignment="Left"/>
|
||
|
<TextBox x:Name="MaxWeightTxt" Width="100" FontSize="25" VerticalAlignment="Center" Margin="0,0,20,0" Foreground="Black" BorderThickness="3" BorderBrush="Black"/>
|
||
|
<Button x:Name="MaxWeightChangeButton" Style="{StaticResource BUTTON_AGREE}" Content="数量调整" FontSize="30" Background="Green" Width="180" Height="60" Margin="0 0 20 0" HorizontalAlignment="Left" Click="MaxWeightChangeButton_Click" />
|
||
3 months ago
|
</StackPanel>
|
||
|
<StackPanel Margin="80 150 0 0" VerticalAlignment="Center" >
|
||
2 months ago
|
<TextBlock Text="提示信息: 缓存区重量超过最大值,设备将会自动停止!" FontSize="25" Width="600" Margin="0,0,20,0" Foreground="Yellow" HorizontalAlignment="Left"/>
|
||
3 months ago
|
|
||
|
</StackPanel>
|
||
|
</Grid>
|
||
|
</Border>
|
||
|
|
||
|
</Window>
|