21 lines
330 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|