mirror of
https://github.com/onyx-and-iris/Lottery.git
synced 2025-04-03 04:13:58 +01:00
add SemanticScreenReader Announcement on button clicked. It reads the text from the NumbersLabel
58 lines
2.1 KiB
C#
58 lines
2.1 KiB
C#
namespace Lottery
|
|
{
|
|
public partial class MainPage : ContentPage
|
|
{
|
|
readonly List<Lottery> Lotteries = [
|
|
new UKLottoLottery(new UKLottoGenerator()),
|
|
new EuroMillionsLottery(new EuroMillionsGenerator()),
|
|
new SetForLifeLottery(new SetForLifeGenerator()),
|
|
new ThunderballLottery(new ThunderBallGenerator())
|
|
];
|
|
const KindOfLottery DefaultLottery = KindOfLottery.Uk;
|
|
Lottery Lottery;
|
|
|
|
public MainPage()
|
|
{
|
|
InitializeComponent();
|
|
|
|
List<string> lottos = ["UK Lotto", "EuroMillions", "Set For Life", "Thunderball"];
|
|
LotteryPicker.ItemsSource = lottos;
|
|
LotteryPicker.SelectedIndex = (int)DefaultLottery;
|
|
|
|
Lottery = Lotteries[LotteryPicker.SelectedIndex];
|
|
}
|
|
|
|
private void SpinButton_Clicked(object sender, EventArgs e)
|
|
{
|
|
Numbers numbers = Lottery.GenerateNumbers();
|
|
List<string> output = [];
|
|
switch (numbers.Kind)
|
|
{
|
|
case KindOfLottery.Uk:
|
|
output.Add($"Numbers: {string.Join(", ", numbers.Normal)}");
|
|
break;
|
|
case KindOfLottery.Euro:
|
|
case KindOfLottery.SetForLife:
|
|
case KindOfLottery.Thunderball:
|
|
if (numbers is NumbersWithSpecial numbersWithSpecial)
|
|
{
|
|
output.AddRange([
|
|
$"Numbers: {string.Join(", ", numbersWithSpecial.Normal)}",
|
|
$"{Lottery.SpecialIdentifier}: {string.Join(", ", numbersWithSpecial.Special)}"
|
|
]);
|
|
}
|
|
break;
|
|
default:
|
|
throw new LotteryException($"no NumbersLabel output defined for {numbers.Kind}");
|
|
};
|
|
NumbersLabel.Text = string.Join("\t", output);
|
|
SemanticScreenReader.Announce(NumbersLabel.Text);
|
|
}
|
|
|
|
private void LotteryPicker_SelectedIndexChanged(object sender, EventArgs e)
|
|
{
|
|
Lottery = Lotteries[LotteryPicker.SelectedIndex];
|
|
}
|
|
}
|
|
}
|