MyDiplom/UsersPage.xaml.cs
2025-04-16 08:32:16 +03:00

20 lines
397 B
C#

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