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

21 lines
330 B
C#

using CommunityToolkit.Maui.Views;
namespace MyDiplom;
public partial class BuyPage : Popup
{
public BuyPage()
{
InitializeComponent();
}
private void CloseButtonClicked(object sender, EventArgs e)
{
Close();
}
private void BuyButtonCliked(object sender, EventArgs e)
{
}
}