RegisterCode.xaml 2.9 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="WpfTest1.SmallDialogs.RegisterCode"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:WpfTest1.SmallDialogs"
  7. mc:Ignorable="d"
  8. Title="激活本系统" Height="500" Width="800">
  9. <Grid>
  10. <Grid>
  11. <Label x:Name="label" Content="请输入本机构名称:" HorizontalAlignment="Left" Height="36" Margin="29,26,0,0" VerticalAlignment="Top" Width="183" FontSize="18"/>
  12. <Label x:Name="label1" Content="请输入激活码:" HorizontalAlignment="Left" Height="32" Margin="29,189,0,0" VerticalAlignment="Top" Width="144" FontSize="18"/>
  13. <TextBox x:Name="textBox_username" HorizontalAlignment="Left" Height="39" Margin="29,62,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="738" FontSize="18" FontFamily="Microsoft YaHei UI"/>
  14. <TextBox x:Name="textBox_password" HorizontalAlignment="Left" Height="31" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="738" Margin="29,140,0,0" FontSize="18" FontFamily="Microsoft YaHei UI"/>
  15. <TextBox x:Name="textBox_code" HorizontalAlignment="Left" Height="91" Margin="29,226,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="738" FontFamily="Microsoft YaHei Light"/>
  16. <Button x:Name="button_check" Content="验证" HorizontalAlignment="Left" Height="39" Margin="214,394,0,0" VerticalAlignment="Top" Width="100" Click="button_Click" FontSize="18" FontFamily="Microsoft YaHei Light"/>
  17. <Label x:Name="label2" Content="请输入激活口令:" HorizontalAlignment="Left" Height="34" Margin="29,106,0,0" VerticalAlignment="Top" Width="171" FontSize="18"/>
  18. <Button x:Name="button_Cancel" Content="取消" HorizontalAlignment="Left" Height="39" Margin="488,394,0,0" VerticalAlignment="Top" Width="102" FontSize="18" FontFamily="Microsoft YaHei Light" Click="button_Cancel_Click"/>
  19. <Button x:Name="button_Reset" Content="重置" HorizontalAlignment="Left" Height="39" Margin="350,394,0,0" VerticalAlignment="Top" Width="100" FontSize="18" FontFamily="Microsoft YaHei Light" Click="button_Reset_Click"/>
  20. <Label x:Name="label3" Content="激活方法:输入购买本产品时所注册的本机构名称(报告单中的机构名称也以此为准)和由此软件提供商发送给您的激活口令与激活码粘" HorizontalAlignment="Left" Margin="29,322,0,0" VerticalAlignment="Top"/>
  21. <Label x:Name="label3_Copy" Content="贴在相应位置,点击“激活”按钮完成激活即可使用本软件全部业务功能。" HorizontalAlignment="Left" Margin="88,347,0,0" VerticalAlignment="Top"/>
  22. </Grid>
  23. </Grid>
  24. </Window>