19 lines
441 B
C#
19 lines
441 B
C#
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));
|
|
}
|
|
} |