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.AddOnSelectionChangeCommitted

Adds an event handler for the selection change committed notification. This event is raised whenever a new value from the dropdown is chosen and the dropdown is closed, or the user uses the arrow keys to cycle through the values without using the dropdown.

[Visual Basic]
Public Sub AddOnSelectionChangeCommitted( _
   ByVal handler As EventHandler _
)
[C#]
public void AddOnSelectionChangeCommitted(
   EventHandler handler
);
[C++]
public: void AddOnSelectionChangeCommitted(
   EventHandler* handler
);
[JScript]
public function AddOnSelectionChangeCommitted(
   handler : EventHandler
);

Parameters

handler
New Event Handler to install for this event.

See Also

ComboBox Class | ComboBox Members | System.WinForms Namespace