Files
HomePantry-MAUI/Views/CategoriesPage.xaml.cs
2026-07-16 12:25:33 +02:00

15 lines
331 B
C#
Executable File

namespace HomePantry.Views;
public partial class CategoriesPage : ContentPage
{
public CategoriesPage()
{
InitializeComponent();
}
private async void OnProductClicked(object sender, EventArgs e)
{
var button = (Button)sender;
await Shell.Current.GoToAsync($"productdetail?name={button.ClassId}");
}
}