Can anybody tell me why only ONE of these groups is initialized correctly (instead of BOTH of them)? Project is UWP and Xamarin Forms is Version 5.0.0.2012 btw
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
x:Class="RadioButtonInput.MainPage">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="100" />
<RowDefinition Height="100" />
</Grid.RowDefinitions>
<StackLayout RadioButtonGroup.GroupName="People"
Grid.Row="0">
<RadioButton
GroupName="Person"
Content="Bob"/>
<RadioButton
GroupName="Person"
Content="Ray"
IsChecked="True"/>
</StackLayout>
<StackLayout RadioButtonGroup.GroupName="Colours"
Grid.Row="1">
<RadioButton
GroupName="Colour"
Content="Red"
IsChecked="True"/>
<RadioButton
GroupName="Colour"
Content="Yellow"/>
</StackLayout>
</Grid>
</ContentPage>