NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ComboBox.OnDropDown

This is the code that actually fires the dropDown event. Don't forget to call base.onDropDown() to ensure that dropDown events are correctly fired at all other times.

[Visual Basic]
Overridable Protected Sub OnDropDown( _
   ByVal e As EventArgs _
)
[C#]
protected virtual void OnDropDown(
   EventArgs e
);
[C++]
protected: virtual void OnDropDown(
   EventArgs* e
);
[JScript]
protected function OnDropDown(
   e : EventArgs
);

Parameters

e
The Event that was fired.

See Also

ComboBox Class | ComboBox Members | System.WinForms Namespace