Читати англійською Редагувати

Поділитися через


ComponentEventArgs Class

Definition

Provides data for the ComponentAdded, ComponentAdding, ComponentRemoved, and ComponentRemoving events.

public class ComponentEventArgs : EventArgs
[System.Runtime.InteropServices.ComVisible(true)]
public class ComponentEventArgs : EventArgs
Inheritance
ComponentEventArgs
Attributes

Examples

The following example demonstrates creating a ComponentEventArgs.

// This example method creates a ComponentEventArgs using the specified argument.
// Typically, this type of event args is created by a design mode subsystem.  
public ComponentEventArgs CreateComponentEventArgs(IComponent component)
{
    ComponentEventArgs args = new ComponentEventArgs(component);

    // The component that is related to the event:  args.Component

    return args;
}

Remarks

ComponentEventArgs is the root event arguments class for all component management events. This type of event occurs when you add or remove components using a designer.

Constructors

ComponentEventArgs(IComponent)

Initializes a new instance of the ComponentEventArgs class.

Properties

Component

Gets the component associated with the event.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

Продукт Версії
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

See also