start.xaml 1.4 KB

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Page
  3. x:Class="ArchivesCenter4.start"
  4. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  5. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  6. xmlns:local="using:ArchivesCenter4"
  7. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. mc:Ignorable="d">
  10. <Grid VerticalAlignment="Top" Margin="36">
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="Auto" />
  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. </Grid.RowDefinitions>
  20. <TextBlock x:Name="WelcomeTitle" Grid.Row="0" Text="真实客观 有序推进" HorizontalAlignment="Left" Style="{StaticResource DisplayTextBlockStyle}" Margin="36,40,0,0"/>
  21. <TextBlock x:Name="DatabaseName" Grid.Row="1" Text="DatabaseName" HorizontalAlignment="Left" Style="{StaticResource TitleLargeTextBlockStyle}" Margin="36,16,0,0"/>
  22. <TextBlock x:Name="DatabaseSubtitle" Grid.Row="2" Text="DatabaseSubtitle" VerticalAlignment="Center" HorizontalAlignment="Left" Style="{StaticResource TitleTextBlockStyle}" Margin="36,16,0,0"/>
  23. </Grid>
  24. </Page>