Guilhermes
This commit is contained in:
19
GuilhermesApp/Pages/FormsMenuPage.xaml.cs
Normal file
19
GuilhermesApp/Pages/FormsMenuPage.xaml.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
namespace GuilhermesApp.Pages;
|
||||
|
||||
public partial class FormsMenuPage : ContentPage
|
||||
{
|
||||
public FormsMenuPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private async void OnNewFormClicked(object sender, EventArgs e)
|
||||
{
|
||||
await Shell.Current.GoToAsync(nameof(NewFormPage));
|
||||
}
|
||||
|
||||
private async void OnHistoryClicked(object sender, EventArgs e)
|
||||
{
|
||||
await Shell.Current.GoToAsync(nameof(FormsHistoryPage));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user