-
Notifications
You must be signed in to change notification settings - Fork 0
/
HomePage.xaml
35 lines (34 loc) · 1.41 KB
/
HomePage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<Page
x:Class="MeetechApp.HomePage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:MeetechApp"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<StackPanel Background="Transparent"
VerticalAlignment="Center"
Margin="10,0,10,0">
<Viewbox Height="70"
Margin="0,0,0,40"
HorizontalAlignment="Center">
<Path Data="{StaticResource LogoPath}"
Fill="White"/>
</Viewbox>
<TextBlock Foreground="White"
FontSize="40"
TextAlignment="Center"
Margin="0,0,0,20">
Bem Vindo!
</TextBlock>
<TextBlock Foreground="White"
FontSize="25"
TextAlignment="Center"
Margin="0,0,0,20"
TextWrapping="WrapWholeWords">Utilize os botões da barra de tarefas para acessar as outras páginas do app </TextBlock>
<TextBlock Foreground="White"
FontSize="28"
TextAlignment="Center"
TextWrapping="WrapWholeWords">Espero que tenha uma ótima experência no Meetech</TextBlock>
</StackPanel>
</Page>