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!

Control ControlAdded Event

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
A ControlEventArgs that contains the event data. The following ControlEventArgs properties provide information specific to this event.
Property Description
Control
Retrieves the control object stored in this event.

See Also

Control Class | Control MembersTopic | System.WinForms Namespace