MyDiplom/MainPage.xaml.cs
2025-04-10 15:34:02 +03:00

28 lines
412 B
C#

using CommunityToolkit.Maui.Views;
using MyDiplom.ViewModels;
namespace MyDiplom
{
public partial class MainPage : ContentPage
{
int count = 0;
public MainPage()
{
InitializeComponent();
this.BindingContext = new UserViewModels();
}
private void OnButtonClicked(object sender, EventArgs e)
{
var buyPopup = new BuyPage();
this.ShowPopup(buyPopup);
}
}
}