28 lines
412 B
C#
28 lines
412 B
C#
using CommunityToolkit.Maui.Views;
|
|
|
|
using MyDiplom.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace MyDiplom
|
|
{
|
|
public partial class MainPage : ContentPage
|
|
{
|
|
int count = 0;
|
|
|
|
public MainPage()
|
|
{
|
|
InitializeComponent();
|
|
|
|
this.BindingContext = new UserViewModels();
|
|
}
|
|
|
|
private void OnButtonClicked(object sender, EventArgs e)
|
|
{
|
|
var buyPopup = new BuyPage();
|
|
this.ShowPopup(buyPopup);
|
|
}
|
|
}
|
|
}
|