This commit is contained in:
2025-11-25 23:26:56 -06:00
parent 447c59d921
commit 35796576ff
40 changed files with 1095 additions and 0 deletions

23
WguApp/MainPage.xaml.cs Normal file
View File

@@ -0,0 +1,23 @@
namespace WguApp;
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);
}
}