I18NCommander/I18N Commander/UI MAUI/MainPage.xaml.cs

23 lines
515 B
C#
Raw Normal View History

2022-08-06 21:48:23 +00:00
namespace UI_MAUI;
public partial class MainPage : ContentPage
{
int count = 0;
public MainPage()
{
this.InitializeComponent();
}
private void OnCounterClicked(object sender, EventArgs e)
{
this.count++;
if (this.count == 1)
this.CounterBtn.Text = $"Clicked {this.count} time";
else
this.CounterBtn.Text = $"Clicked {this.count} times";
SemanticScreenReader.Announce(this.CounterBtn.Text);
}
}