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