153 lines
8.6 KiB
XML
153 lines
8.6 KiB
XML
<Page x:Class="头罩视野.Views.SetPassWord"
|
||
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:头罩视野.Views"
|
||
mc:Ignorable="d"
|
||
d:DesignHeight="768" d:DesignWidth="1024"
|
||
Background="#F0F0F0"
|
||
Title="SetPassWord">
|
||
|
||
<Grid Margin="20">
|
||
<!-- 背景圆环装饰 -->
|
||
<Canvas>
|
||
<Ellipse Canvas.Left="200" Canvas.Top="150" Width="600" Height="350"
|
||
Stroke="#87CEFA" StrokeThickness="6" Opacity="0.3"/>
|
||
<Ellipse Canvas.Left="250" Canvas.Top="200" Width="500" Height="250"
|
||
Stroke="#87CEFA" StrokeThickness="4" Opacity="0.2"/>
|
||
</Canvas>
|
||
|
||
<ScrollViewer VerticalScrollBarVisibility="Auto">
|
||
<StackPanel HorizontalAlignment="Center" Width="950">
|
||
<!-- 标题 -->
|
||
<TextBlock Text="密码时间设定" FontSize="36"
|
||
HorizontalAlignment="Center" Margin="0 20 0 40"
|
||
Foreground="Black" />
|
||
|
||
<!-- ===== 第一部分:当前时间 ===== -->
|
||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Margin="0 0 0 20">
|
||
<TextBlock Text="当前时间" FontSize="20" Foreground="Black"
|
||
VerticalAlignment="Center" Width="120"/>
|
||
|
||
<!-- 年 月 日 -->
|
||
<TextBox x:Name="NE_7" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="年" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
|
||
<TextBox x:Name="NE_8" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="月" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
|
||
<TextBox x:Name="NE_9" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="日" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
|
||
<TextBlock Text="本机时间" FontSize="18" Foreground="Black" Margin="20 0 0 0"/>
|
||
</StackPanel>
|
||
|
||
<!-- ===== 第二部分:提醒1 ===== -->
|
||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Margin="0 0 0 15">
|
||
<TextBlock Text="提醒1" FontSize="20" Foreground="Black"
|
||
VerticalAlignment="Center" Width="120"/>
|
||
|
||
<!-- 年 月 日 -->
|
||
<TextBox x:Name="NE_14" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="年" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
|
||
<TextBox x:Name="NE_15" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="月" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
|
||
<TextBox x:Name="NE_16" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="日" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
</StackPanel>
|
||
|
||
<!-- ===== 第三部分:到期1 ===== -->
|
||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Margin="0 0 0 15">
|
||
<TextBlock Text="到期1" FontSize="20" Foreground="Black"
|
||
VerticalAlignment="Center" Width="120"/>
|
||
|
||
<!-- 年 月 日 -->
|
||
<TextBox x:Name="NE_17" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="年" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
|
||
<TextBox x:Name="NE_18" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="月" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
|
||
<TextBox x:Name="NE_19" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="日" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
</StackPanel>
|
||
|
||
<!-- ===== 第四部分:提醒2 ===== -->
|
||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Margin="0 0 0 15">
|
||
<TextBlock Text="提醒2" FontSize="20" Foreground="Black"
|
||
VerticalAlignment="Center" Width="120"/>
|
||
|
||
<!-- 年 月 日 -->
|
||
<TextBox x:Name="NE_20" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="年" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
|
||
<TextBox x:Name="NE_21" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="月" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
|
||
<TextBox x:Name="NE_22" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="日" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
</StackPanel>
|
||
|
||
<!-- ===== 第五部分:到期2 ===== -->
|
||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Margin="0 0 0 15">
|
||
<TextBlock Text="到期2" FontSize="20" Foreground="Black"
|
||
VerticalAlignment="Center" Width="120"/>
|
||
|
||
<!-- 年 月 日 -->
|
||
<TextBox x:Name="NE_23" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="年" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
|
||
<TextBox x:Name="NE_24" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="月" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
|
||
<TextBox x:Name="NE_25" Text="" Width="130" Height="45" FontSize="20"
|
||
Foreground="Black" Background="White" Margin="5 0"/>
|
||
<TextBlock Text="日" FontSize="20" Foreground="Black" Margin="10 0 20 0"/>
|
||
</StackPanel>
|
||
|
||
<!-- ===== 第六部分:激活码与完全激活码 ===== -->
|
||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Margin="0 30 0 20">
|
||
<TextBlock Text="激活码" FontSize="22" Foreground="Black"
|
||
VerticalAlignment="Center" Width="120"/>
|
||
|
||
<!-- 激活码:使用PasswordBox隐藏输入,显示#### -->
|
||
<PasswordBox x:Name="ActiveCode_Password" Width="250" Height="45"
|
||
FontSize="20" Margin="5 0" Background="White"
|
||
PasswordChar="#"/>
|
||
<TextBlock Text="完全激活码" FontSize="20" Foreground="Black"
|
||
Margin="30 12 20 0"/>
|
||
|
||
<!-- 完全激活码 -->
|
||
<PasswordBox x:Name="FullActiveCode_Password" Width="250" Height="45"
|
||
FontSize="20" Margin="5 0" Background="White"
|
||
PasswordChar="#"/>
|
||
</StackPanel>
|
||
|
||
<!-- ===== 保存按钮 ===== -->
|
||
<Button x:Name="TS_0" Content="保存" FontSize="16"
|
||
Width="140" Height="50" HorizontalAlignment="Left"
|
||
Background="#87CEFA" Foreground="White"
|
||
|
||
Margin="140 20 0 30" />
|
||
</StackPanel>
|
||
</ScrollViewer>
|
||
</Grid>
|
||
</Page>
|