namespace RyzStudio.Windows.ThemedForms { public class TYesNoPickerBox : TPickerBox { public TYesNoPickerBox() : base() { this.ComboBox.Items.Clear(); this.ComboBox.Items.AddRange(new string[] { "No", "Yes" }); if (this.ComboBox.Items.Count > 0) this.ComboBox.SelectedIndex = 0; } public bool Value { get => (this.ComboBox.SelectedIndex == 1); set =>this.ComboBox.SelectedIndex = (value ? 1 : 0); } } }