-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.xaml
18 lines (15 loc) · 962 Bytes
/
Home.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Page x:Class="EventParadigm.Home"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:EventParadigm"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="790"
Title="Home">
<Grid Background="#FFB6B6B6">
<Label Content="Welcome" HorizontalAlignment="Center" Height="87" Margin="0,47,0,0" VerticalAlignment="Top" Width="260" FontSize="48"/>
<Label Content="Valor total de las ventas" HorizontalAlignment="Left" Height="38" Margin="89,252,0,0" VerticalAlignment="Top" Width="215" FontSize="18"/>
<TextBox HorizontalAlignment="Left" Margin="450,229,0,0" Text="" TextWrapping="Wrap" VerticalAlignment="Top" Width="215" Height="84"/>
</Grid>
</Page>