Mobail_App/MainPage.xaml.cs
2025-03-10 10:02:43 +03:00

31 lines
724 B
C#

namespace MobailApp
{
public partial class MainPage : ContentPage
{
//int count = 0;
public MainPage()
{
InitializeComponent();
}
//private void OnCounterClicked(object sender, EventArgs e)
//{
// count++;
// if (count == 1)
// CounterBtn.Text = $"Clicked {count} time";
// else
// CounterBtn.Text = $"Clicked {count} times";
// SemanticScreenReader.Announce(CounterBtn.Text);
//}
//private async void NewPageOpenbtn_Clicked(System.Object sender, System.EventArgs e)
//{
// await Navigation.PushAsync(new NewPage1());
//}
}
}