17 lines
306 B
C#
17 lines
306 B
C#
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);
|
|
}
|
|
|
|
} |