MyDiplom/BuyPage.xaml.cs

21 lines
330 B
C#
Raw Normal View History

2025-04-10 15:34:02 +03:00
using CommunityToolkit.Maui.Views;
2025-03-14 09:56:57 +03:00
namespace MyDiplom;
2025-04-10 15:34:02 +03:00
public partial class BuyPage : Popup
2025-03-14 09:56:57 +03:00
{
2025-04-10 15:34:02 +03:00
public BuyPage()
{
InitializeComponent();
}
private void CloseButtonClicked(object sender, EventArgs e)
{
Close();
}
private void BuyButtonCliked(object sender, EventArgs e)
{
}
}