1234567891011121314151617181920212223 |
- <Window x:Class="ArchivesCenter3.Login"
- 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="数据库解密 - Archives Center" Height="300" Width="400" WindowStartupLocation="CenterScreen" Topmost="True" Icon="/Resources/icons8_omnichannel.ico">
- <Grid>
- <Grid.RowDefinitions>
- <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="10"/>
- <TextBlock Grid.Row="2" Text="请输入数据库密钥" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5"/>
- <TextBox x:Name="LoginKeyBox" Grid.Row="3" HorizontalAlignment="Center" Margin="5" Width="150" Height="20"/>
- <Button x:Name="LoginButton" Grid.Row="4" Width="60" Height="20" Margin="10" Click="Button_Click" IsEnabled="False">解密</Button>
- </Grid>
- </Window>
|