reg.xaml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <Window x:Class="ArchivesCenter3.reg"
  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:ArchivesCenter3"
  7. mc:Ignorable="d"
  8. Title="OOBE - Archives Center" Height="300" Width="400" WindowStartupLocation="CenterScreen" Topmost="True" Icon="/Resources/icons8_omnichannel.ico">
  9. <Grid>
  10. <ScrollViewer>
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="Auto"/>
  14. <RowDefinition Height="Auto"/>
  15. <RowDefinition Height="Auto"/>
  16. <RowDefinition Height="Auto"/>
  17. <RowDefinition Height="Auto"/>
  18. <RowDefinition Height="Auto"/>
  19. <RowDefinition Height="Auto"/>
  20. <RowDefinition Height="Auto"/>
  21. <RowDefinition Height="Auto"/>
  22. <RowDefinition Height="Auto"/>
  23. <RowDefinition Height="Auto"/>
  24. <RowDefinition Height="Auto"/>
  25. <RowDefinition Height="Auto"/>
  26. <RowDefinition Height="Auto"/>
  27. </Grid.RowDefinitions>
  28. <Image Source="/Resources/omnichannel_96px.png" Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="5" Height="96"/>
  29. <TextBlock Grid.Row="1" Text="Archives Center" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="24" Foreground="#0368ba" Margin="5"/>
  30. <TextBlock Grid.Row="2" Text="开箱体验" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="24" Foreground="#0368ba" Margin="5"/>
  31. <TextBlock x:Name="regdbN" Grid.Row="3" Text="数据库标题" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5"/>
  32. <TextBox Grid.Row="4" HorizontalAlignment="Center" Margin="5" Width="150" Height="20"/>
  33. <TextBlock x:Name="regdbsN" Grid.Row="5" Text="数据库副标题" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5"/>
  34. <TextBox Grid.Row="6" HorizontalAlignment="Center" Margin="5" Width="150" Height="20"/>
  35. <TextBlock x:Name="regWT" Grid.Row="7" Text="欢迎标题" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5"/>
  36. <TextBox Grid.Row="8" HorizontalAlignment="Center" Margin="5" Width="150" Height="20"/>
  37. <TextBlock x:Name="regUN" Grid.Row="9" Text="用户名" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5"/>
  38. <TextBox Grid.Row="10" HorizontalAlignment="Center" Margin="5" Width="150" Height="20"/>
  39. <TextBlock Grid.Row="11" Text="★数据库密钥" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5"/>
  40. <TextBox x:Name="regbox" Grid.Row="12" HorizontalAlignment="Center" Margin="5" Width="150" Height="20" TextChanged="TextBox_TextChanged"/>
  41. <Button x:Name="regbutton" Grid.Row="13" Width="60" Height="20" Margin="10" IsEnabled="False" Click="regbutton_Click">完成</Button>
  42. </Grid>
  43. </ScrollViewer>
  44. </Grid>
  45. </Window>