You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
667 B
26 lines
667 B
using System;
|
|
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
namespace OrderStacks.view
|
|
{
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|
public partial class LastPage_Rules : ContentPage
|
|
{
|
|
public LastPage_Rules()
|
|
{
|
|
InitializeComponent();
|
|
NavigationPage.SetHasNavigationBar(this, false);
|
|
}
|
|
|
|
private async void BackToHome(object sender, EventArgs args)
|
|
{
|
|
await Navigation.PushAsync(new HomePage());
|
|
}
|
|
private async void ClickToPlay(object sender, EventArgs args)
|
|
{
|
|
await Navigation.PushAsync(new GamePreparationPage());
|
|
}
|
|
}
|
|
} |