MoelAPP/MainPage.xaml.cs

19 lines
292 B
C#
Raw Permalink Normal View History

2025-02-27 15:20:51 +03:00
namespace ModelAPP
{
public partial class MainPage : ContentPage
{
int count = 0;
public MainPage()
{
InitializeComponent();
}
private void OnCounterClicked(object sender, EventArgs e)
{
}
}
}