15 lines
331 B
C#
Executable File
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}");
|
|
}
|
|
} |