public PickerValueBox(PickerBase parent) { parentControl = parent; base.SetStyle(ControlStyles.Selectable, false); }
public PickerButton(PickerBase parent) { parentControl = parent; isDropDown = false; buttonHot = false; buttonPressed = false; BackColor = SystemColors.Control; ForeColor = SystemColors.ControlText; base.TabStop = false; base.IsDefault = false; base.SetStyle(ControlStyles.Selectable, false); }
public PickerService(PickerBase parent) { parentControl = parent; }
public PickerListBox(PickerBase parent) { base.IntegralHeight = false; DrawMode = DrawMode.OwnerDrawVariable; parentControl = parent; }