Created
May 14, 2019 03:53
-
-
Save kakobotasso/673bef0749b44765fede14304c558c02 to your computer and use it in GitHub Desktop.
MainPage code behind FireEvents
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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