WeightWarningSet.xaml
1.34 KB
<Page x:Class="HH_WCS_Standard.Page.HandView.WeightWarningSet"
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:HH_WCS_Standard.Page.HandView"
mc:Ignorable="d" Background="#2B2833"
d:DesignHeight="450" d:DesignWidth="800"
Title="WeightWarningSet"
Loaded="DMSkinWindow_Loaded">
<ScrollViewer Style="{StaticResource DMScrollViewer}" HorizontalScrollBarVisibility="Disabled" Padding="10">
<StackPanel >
<TextBlock Text="称重超重设定" FontSize="22" Margin="10,10" Foreground="#fff"></TextBlock>
<UniformGrid Columns="1">
<StackPanel >
<TextBlock Text="重量" FontSize="13" Margin="10,10" TextAlignment="Center" Foreground="#fff" Width="100" />
<TextBox x:Name="weight" Margin="10,10" TextWrapping="Wrap" Width="126" FontSize="20" />
<Button Style="{StaticResource AduButton}" Content="设定" FontWeight="Light" Background="Transparent" Click="Button_Click" />
</StackPanel>
</UniformGrid>
</StackPanel>
</ScrollViewer>
</Page>