Skip to content

Instantly share code, notes, and snippets.

@elbruno
Created May 8, 2015 12:03
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/4fe0926d25058c0aa7d4 to your computer and use it in GitHub Desktop.
Save elbruno/4fe0926d25058c0aa7d4 to your computer and use it in GitHub Desktop.
W10RPI2 - Hello Valentino Xaml Cs
using System;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
namespace HelloValentino
{
public sealed partial class MainPage : Page
{
public MainPage()
{
InitializeComponent();
}
private void ButtonHelloValentino_OnClick(object sender, RoutedEventArgs e)
{
TextBlockMessage.Text = $@"Hello Valentino!
Current time is:
{DateTime.Now}";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment