Skip to content
Permalink
8aa6fc5d3a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
37 lines (30 sloc) 806 Bytes
namespace WebAppCW
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
}
private void OnAccountDetailsClicked(object sender, EventArgs e)
{
Navigation.PushAsync(new AccountPage());
}
private void OnLogoutClicked(object sender, EventArgs e)
{
Navigation.PushAsync(new LoginPage());
}
private void OnRavenClicked(object sender, EventArgs e)
{
Navigation.PushAsync(new RavenTorPage());
}
private void OnBiblinsClicked(object sender, EventArgs e)
{
return;
}
private void OnStanageClicked(object sender, EventArgs e)
{
return;
}
}
}