using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using InABox.Mobile; using Xamarin.Forms; using Xamarin.Forms.Xaml; namespace PRS.Mobile { [XamlCompilation(XamlCompilationOptions.Compile)] public partial class TestRadioList : ContentPage { public TestRadioList() { InitializeComponent(); } private void MobileRadioList_OnChanged(object sender, MobileRadioListChangedEventArgs args) { } } }