Przeprowadzka
This commit is contained in:
Executable
+22
@@ -0,0 +1,22 @@
|
||||
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");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user