コード例 #1
0
ファイル: PickerBase.cs プロジェクト: 4g0st1n0/MapManager
            public PickerValueBox(PickerBase parent)
            {
                parentControl = parent;

                base.SetStyle(ControlStyles.Selectable, false);
            }
コード例 #2
0
ファイル: PickerBase.cs プロジェクト: 4g0st1n0/MapManager
            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);
            }
コード例 #3
0
ファイル: PickerBase.cs プロジェクト: 4g0st1n0/MapManager
 public PickerService(PickerBase parent)
 {
     parentControl = parent;
 }
コード例 #4
0
ファイル: PickerBase.cs プロジェクト: 4g0st1n0/MapManager
 public PickerListBox(PickerBase parent)
 {
     base.IntegralHeight = false;
     DrawMode = DrawMode.OwnerDrawVariable;
     parentControl = parent;
 }