30 lines
1.4 KiB
XML
30 lines
1.4 KiB
XML
<Window x:Class="VoiletKmsTool.MainWindow"
|
|
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"
|
|
ResizeMode="NoResize"
|
|
mc:Ignorable="d"
|
|
WindowStartupLocation="CenterScreen"
|
|
Title="VoiletKmsTool" Height="240" Width="315">
|
|
<StackPanel Margin="20" Orientation="Vertical">
|
|
|
|
<!-- 多语言选择 -->
|
|
<ComboBox SelectedIndex="0" Width="80" MaxDropDownHeight="260" x:Name="SystemLang" HorizontalAlignment="Left">
|
|
</ComboBox>
|
|
|
|
<!-- 系统版本 -->
|
|
<ComboBox SelectedIndex="0" Width="260" MaxDropDownHeight="260" x:Name="SystemVersion" Margin="0 10 " HorizontalAlignment="Left">
|
|
</ComboBox>
|
|
|
|
<!-- 激活服务器 -->
|
|
<Label Margin="0 0 " x:Name="ActionServer" HorizontalAlignment="Left">Action Server:</Label>
|
|
|
|
<!-- 激活服务器输入框 -->
|
|
<TextBox Width="150" HorizontalAlignment="Left" Name="ActionServerAddr" Margin="0 10 ">kms.03k.org</TextBox>
|
|
|
|
<!-- 激活按钮 -->
|
|
<Button Margin="0 10 " x:Name="SystemAction" Content="Action" Width="50" HorizontalAlignment="Left"/>
|
|
</StackPanel>
|
|
</Window>
|