Represents a base class of a Windows Picker control that allows you to edit a value of any type.
Inheritance: System.Windows.Forms.ContainerControl
示例#1
0
            public PickerValueBox(PickerBase parent)
            {
                parentControl = parent;

                base.SetStyle(ControlStyles.Selectable, false);
            }
示例#2
0
 public PickerListBox(PickerBase parent)
 {
     base.IntegralHeight = false;
     DrawMode = DrawMode.OwnerDrawVariable;
     parentControl = parent;
 }
示例#3
0
 public PickerService(PickerBase parent)
 {
     parentControl = parent;
 }
示例#4
0
            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);
            }