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!

RadioButton.AddOnCheckedChanged

Adds an event handler for the System.WinForms.RadioButton.CheckedChanged event.

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

Parameters

handler
An EventHandler delegate that represents the method that will handle the System.WinForms.RadioButton.CheckedChanged event.

Remarks

Duplicates adds are not filtered out.

See Also

RadioButton Class | RadioButton Members | System.WinForms Namespace | OnCheckedChanged | RemoveOnCheckedChanged