Skip to content

Instantly share code, notes, and snippets.

@LuceCarter
Last active January 6, 2018 12:45
Show Gist options
  • Save LuceCarter/530de8d4df0a4b446e5867d773b0636a to your computer and use it in GitHub Desktop.
Save LuceCarter/530de8d4df0a4b446e5867d773b0636a to your computer and use it in GitHub Desktop.
Ooui MyPage
public partial class MyPage : ContentPage
{
public MyPage()
{
InitializeComponent();
}
void Handle_Clicked(object sender, System.EventArgs e)
{
var button = sender as Button;
if (button == null)
return;
newsLabel.Text = "I love Ooui!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment