diff --git a/UserInterface/RadioButtonDemos/RadioButtonDemos/GroupedRadioButtonsPageCode.cs b/UserInterface/RadioButtonDemos/RadioButtonDemos/GroupedRadioButtonsPageCode.cs index 0a3e3946ae..0242c43e1d 100644 --- a/UserInterface/RadioButtonDemos/RadioButtonDemos/GroupedRadioButtonsPageCode.cs +++ b/UserInterface/RadioButtonDemos/RadioButtonDemos/GroupedRadioButtonsPageCode.cs @@ -35,8 +35,8 @@ public GroupedRadioButtonsPageCode() Children = { appleRadioButton, bananaRadioButton, pineappleRadioButton, otherFruitRadioButton } }; - // All of the RadioButtons in this StackLayout will automatically be given the GroupName 'fruits`. - fruitStackLayout.SetValue(RadioButtonGroup.GroupNameProperty, "fruits"); + // All of the RadioButtons in this StackLayout will automatically be given the GroupName 'fruits'. + RadioButtonGroup.SetGroupName(fruitStackLayout, "fruits"); Title = "Grouped RadioButtons demo (code)"; Content = new StackLayout diff --git a/UserInterface/Xaminals/Xaminals/AppShell.xaml b/UserInterface/Xaminals/Xaminals/AppShell.xaml index 685e09308c..8e4e3e0d99 100644 --- a/UserInterface/Xaminals/Xaminals/AppShell.xaml +++ b/UserInterface/Xaminals/Xaminals/AppShell.xaml @@ -5,6 +5,7 @@ xmlns:sys="clr-namespace:System;assembly=netstandard" xmlns:views="clr-namespace:Xaminals.Views" x:Class="Xaminals.AppShell" + x:Name="shell" FlyoutBackgroundImage="photo.jpg" FlyoutBackgroundImageAspect="AspectFill" FlyoutHeaderBehavior="CollapseOnScroll"> @@ -98,6 +99,40 @@ --> + + + + + + + +