Files
ExemploAppMAUI/GuilhermesApp/Pages/FormsMenuPage.xaml.cs
Guilherme Gaspar 44f456eb29 Guilhermes
2026-03-23 17:42:36 +00:00

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));
}
}