MyDiplom/UsersPage.xaml.cs

17 lines
306 B
C#
Raw Normal View History

2025-04-14 12:49:39 +03:00
using CommunityToolkit.Maui.Views;
namespace MyDiplom;
public partial class UsersPage : ContentPage
{
public UsersPage()
{
InitializeComponent();
}
private void OnButtonClicked(object sender, EventArgs e)
{
var buyPopup = new BuyPage();
this.ShowPopup(buyPopup);
}
}