Lottery/Lottery/MainPage.xaml.cs
onyx-and-iris e1ab2087a2 rename LottoPickerException to LotteryException
add SemanticScreenReader Announcement on button clicked.
It reads the text from the NumbersLabel
2024-09-27 02:01:24 +01:00

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];
}
}
}