ToolboxComponentsCreatedEventHandler Delegate
Represents the method that handles the ComponentsCreated event.
Assembly: System.Drawing (in System.Drawing.dll)
public delegate void ToolboxComponentsCreatedEventHandler( Object^ sender, ToolboxComponentsCreatedEventArgs^ e )
Parameters
- sender
- Type: System::Object
The source of the event.
- e
- Type: System.Drawing.Design::ToolboxComponentsCreatedEventArgs
A ToolboxComponentsCreatedEventArgs that provides data for the event.
When you create a ToolboxComponentsCreatedEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event-handler delegates, see Events and Delegates.
The following example code provides a method that attaches an event handler for the ComponentsCreated event of a ToolboxItem. It also provides a ToolboxComponentsCreatedEventHandler event handler method that writes the name of the type of the components that were created to the Console when the event handler is raised by a ComponentsCreated event.
public: [PermissionSetAttribute(SecurityAction::Demand, Name="FullTrust")] void LinkToolboxComponentsCreatedEvent( ToolboxItem^ item ) { item->ComponentsCreated += gcnew ToolboxComponentsCreatedEventHandler( this, &Form1::OnComponentsCreated ); } private: void OnComponentsCreated( Object^ sender, ToolboxComponentsCreatedEventArgs^ e ) { // Lists created components on the Console. for ( int i = 0; i < e->Components->Length; i++ ) { Console::WriteLine( "Component #" + i + ": " + e->Components[ i ]->Site->Name ); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.