Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@elbruno
Created May 8, 2015 12:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elbruno/38f68ba7769c4e0b01c3 to your computer and use it in GitHub Desktop.
Save elbruno/38f68ba7769c4e0b01c3 to your computer and use it in GitHub Desktop.
W10RPI2 - Hello Valentino Xaml
<Page x:Class="HelloValentino.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:HelloValentino"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<Button x:Name="ButtonHello"
Grid.Row="0"
HorizontalAlignment="Center"
Click="ButtonHelloValentino_OnClick"
FontSize="80.667">Click to Hello</Button>
<TextBlock x:Name="TextBlockMessage"
HorizontalAlignment="Center"
Grid.Row="1"
Text="Hola"
FontSize="80.667"></TextBlock>
</Grid>
</Page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment