ReadWriteControlDesigner.OnComponentChanged Method

Definition

Represents the method that will handle the ComponentChanged event of the IComponentChangeService class.

public:
 override void OnComponentChanged(System::Object ^ sender, System::ComponentModel::Design::ComponentChangedEventArgs ^ ce);
public override void OnComponentChanged (object sender, System.ComponentModel.Design.ComponentChangedEventArgs ce);
override this.OnComponentChanged : obj * System.ComponentModel.Design.ComponentChangedEventArgs -> unit
Public Overrides Sub OnComponentChanged (sender As Object, ce As ComponentChangedEventArgs)

Parameters

sender
Object

The object sending the event.

ce
ComponentChangedEventArgs

The ComponentChangedEventArgs object that provides data for the event.

Remarks

Note

The ReadWriteControlDesigner class is obsolete. Use the ContainerControlDesigner class for equivalent control designer functionality.

The ComponentChanged event occurs after a property has been changed. This method allows implementers to do any processing that may be needed after a property change.

Applies to

See also