/// <summary> /// Creates a radio button with the tab style. /// </summary> /// <returns>The button.</returns> /// <param name="otherButton">Other radio button in the group.</param> public static Button CreateTabButton(RadioButton otherButton) { RadioButton button = new RadioButton(otherButton); button.DrawIndicator = false; button.ApplyStyleTab(); return(button); }