C# Class PresentationControls.PopupComboBox

显示文件 Open project: lallousx86/WEPExplorer

Protected Properties

Property Type Description
dropDown Popup

Private Properties

Property Type Description
InitializeComponent void
WndProc void

Public Methods

Method Description
HideDropDown ( ) : void

Hides the drop down.

PopupComboBox ( ) : System

Initializes a new instance of the PopupControl.PopupComboBox class.

ShowDropDown ( ) : void

Shows the drop down.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Clean up any resources being used.

Private Methods

Method Description
InitializeComponent ( ) : void

Required method for Designer support - do not modify the contents of this method with the code editor.

WndProc ( Message &m ) : void

Method Details

Dispose() protected method

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
return void

HideDropDown() public method

Hides the drop down.
public HideDropDown ( ) : void
return void

PopupComboBox() public method

Initializes a new instance of the PopupControl.PopupComboBox class.
public PopupComboBox ( ) : System
return System

ShowDropDown() public method

Shows the drop down.
public ShowDropDown ( ) : void
return void

Property Details

dropDown protected_oe property

The pop-up wrapper for the dropDownControl. Made PROTECTED instead of PRIVATE so descendent classes can set its Resizable property. Note however the pop-up properties must be set after the dropDownControl is assigned, since this popup wrapper is recreated when the dropDownControl is assigned.
protected Popup,PresentationControls dropDown
return Popup