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!

DomainUpDown SelectedItemChanged Event

Occurs when the SelectedItem property has been changed.

The following declaration shows the syntax for a method that handles the SelectedItemChanged event.

[Visual Basic]
Private Sub DomainUpDownName_SelectedItemChanged( _
   ByVal sender As Object, _
   ByVal e As EventArgs _
)
[C#]
private void DomainUpDownName_SelectedItemChanged(
   object sender,
   EventArgs e
);
[C++]
private: void DomainUpDownName_SelectedItemChanged(
   Object* sender,
   EventArgs* e
);
[JScript]
private DomainUpDownName_SelectedItemChanged(
   sender : Object,
   e : EventArgs
);

Parameters

sender
The source of the event.
e
An EventArgs that contains the event data. The following EventArgs properties provide information specific to this event.
Property Description
ExtendedInfo
Holds a reference to an object that manages the event's state.

Remarks

For the System.WinForms.DomainUpDown.SelectedItemChanged event to occur, the SelectedItem property can be changed in code, by the user typing in a new value, or clicking the control's and or down buttons.

See Also

DomainUpDown Class | DomainUpDown MembersTopic | System.WinForms Namespace | DomainUpDown.SelectedItem | DomainUpDown.UpButton | DomainUpDown.DownButton