Skip to content

Instantly share code, notes, and snippets.

@kakobotasso
Created May 14, 2019 03:53
Show Gist options
  • Save kakobotasso/673bef0749b44765fede14304c558c02 to your computer and use it in GitHub Desktop.
Save kakobotasso/673bef0749b44765fede14304c558c02 to your computer and use it in GitHub Desktop.
MainPage code behind FireEvents
using System;
namespace FireEvents
{
[DesignTimeVisible(true)]
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
}
async void OnButton01Clicked(object sender, System.EventArgs e)
{
}
async void OnButton02Clicked(object sender, System.EventArgs e)
{
}
async void OnButton03Clicked(object sender, System.EventArgs e)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment