AppDoebeln/TourismusDöbeln/MainPage.xaml.cs
2024-08-30 06:36:09 +02:00

26 lines
534 B
C#

namespace TourismusDöbeln
{
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);
}
}
}