22 lines
541 B
C#
Executable File
22 lines
541 B
C#
Executable File
using System.Windows.Input;
|
|
using System.ComponentModel;
|
|
using System.Collections.ObjectModel;
|
|
using Microsoft.Maui.Controls;
|
|
using HomePantry.ViewModels;
|
|
|
|
namespace HomePantry.Views;
|
|
|
|
public partial class PantryPage : ContentPage
|
|
{
|
|
public PantryPage()
|
|
{
|
|
InitializeComponent();
|
|
|
|
BindingContext = new PantryInfo();
|
|
}
|
|
|
|
private async void Button_Clicked(object? sender, EventArgs e)
|
|
{
|
|
await DisplayAlertAsync("Spiżarnia", "Funkcja dodawania produktów zostanie zaimplementowana w kolejnym zadaniu.", "OK");
|
|
}
|
|
} |