Esempio n. 1
0
 void OnButtonClicked(RadioButtonItem button)
 {
     foreach (var other in buttons)
     {
         if (other != button)
         {
             other.UnSelect();
         }
     }
 }
 /// <summary>
 /// On switch clicked
 /// </summary>
 private void OnRadioButtonChanged(RadioButtonItem newValues)
 {
     DisplayAlert("RadioButton Slide", $"Radiobutton toggled: {newValues.Content}", "OK");
 }