55 lines
2.5 KiB
XML
55 lines
2.5 KiB
XML
<Window 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"
|
|
mc:Ignorable="d"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
xmlns:viewModels="clr-namespace:LiviaAdmin.ViewModels"
|
|
x:Class="LiviaAdmin.Views.MainWindow"
|
|
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
|
|
TextElement.FontWeight="Regular"
|
|
TextElement.FontSize="13"
|
|
TextOptions.TextFormattingMode="Ideal"
|
|
TextOptions.TextRenderingMode="Auto"
|
|
WindowStartupLocation="CenterScreen"
|
|
SizeToContent="WidthAndHeight"
|
|
d:DataContext="{d:DesignInstance Type=viewModels:MainWindowViewModel}"
|
|
Title="Livia管理员工具"
|
|
Background="{DynamicResource MaterialDesignPaper}"
|
|
FontFamily="Microsoft YaHei">
|
|
<Grid>
|
|
<StackPanel>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="序列号"
|
|
VerticalAlignment="Center"
|
|
Margin="20"
|
|
Width="80" />
|
|
<TextBox Text="{Binding HardwareId}"
|
|
VerticalAlignment="Center"
|
|
Width="200" />
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="有效期"
|
|
VerticalAlignment="Center"
|
|
Margin="20"
|
|
Width="80" />
|
|
<DatePicker SelectedDate="{Binding ExpireDate}"
|
|
VerticalAlignment="Center"
|
|
Width="100" />
|
|
<materialDesign:TimePicker SelectedTime="{Binding ExpireDate}"
|
|
Width="100" />
|
|
</StackPanel>
|
|
<Button Width="180"
|
|
Margin="20"
|
|
Click="GenerateAuthenticationKeyButtonClick">
|
|
<TextBlock Text="生成授权码" />
|
|
</Button>
|
|
<TextBox Text="{Binding AuthenticationKey}"
|
|
Margin="20"
|
|
TextWrapping="Wrap"
|
|
MaxWidth="800"
|
|
Style="{StaticResource MaterialDesignOutlinedTextBox}" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|