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); } }