Files
WorkTime/WorkTime.Mobile/MainPage.xaml.cs
2025-11-12 11:49:15 +01:00

20 lines
454 B
C#

namespace WorkTime.Mobile;
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);
}
}