123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <Window x:Class="ArchivesCenter3.reg"
- 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"
- xmlns:local="clr-namespace:ArchivesCenter3"
- mc:Ignorable="d"
- Title="OOBE - Archives Center" Height="300" Width="400" WindowStartupLocation="CenterScreen" Topmost="True" Icon="/Resources/icons8_omnichannel.ico">
- <Grid>
- <ScrollViewer>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
- <Image Source="/Resources/omnichannel_96px.png" Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="5" Height="96"/>
- <TextBlock Grid.Row="1" Text="Archives Center" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="24" Foreground="#0368ba" Margin="5"/>
- <TextBlock Grid.Row="2" Text="开箱体验" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="24" Foreground="#0368ba" Margin="5"/>
- <TextBlock x:Name="regdbN" Grid.Row="3" Text="数据库标题" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5"/>
- <TextBox Grid.Row="4" HorizontalAlignment="Center" Margin="5" Width="150" Height="20"/>
- <TextBlock x:Name="regdbsN" Grid.Row="5" Text="数据库副标题" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5"/>
- <TextBox Grid.Row="6" HorizontalAlignment="Center" Margin="5" Width="150" Height="20"/>
- <TextBlock x:Name="regWT" Grid.Row="7" Text="欢迎标题" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5"/>
- <TextBox Grid.Row="8" HorizontalAlignment="Center" Margin="5" Width="150" Height="20"/>
- <TextBlock x:Name="regUN" Grid.Row="9" Text="用户名" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5"/>
- <TextBox Grid.Row="10" HorizontalAlignment="Center" Margin="5" Width="150" Height="20"/>
- <TextBlock Grid.Row="11" Text="★数据库密钥" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5"/>
- <TextBox x:Name="regbox" Grid.Row="12" HorizontalAlignment="Center" Margin="5" Width="150" Height="20" TextChanged="TextBox_TextChanged"/>
- <Button x:Name="regbutton" Grid.Row="13" Width="60" Height="20" Margin="10" IsEnabled="False" Click="regbutton_Click">完成</Button>
- </Grid>
- </ScrollViewer>
- </Grid>
- </Window>
|