InheritanceService.AddInheritedComponents 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将由指定组件继承的组件添加到 InheritanceService。
重载
AddInheritedComponents(IComponent, IContainer) |
将由指定组件继承的组件添加到 InheritanceService。 |
AddInheritedComponents(Type, IComponent, IContainer) |
将由指定组件继承的指定类型的组件添加到 InheritanceService 中。 |
AddInheritedComponents(IComponent, IContainer)
将由指定组件继承的组件添加到 InheritanceService。
public:
virtual void AddInheritedComponents(System::ComponentModel::IComponent ^ component, System::ComponentModel::IContainer ^ container);
public void AddInheritedComponents (System.ComponentModel.IComponent component, System.ComponentModel.IContainer container);
abstract member AddInheritedComponents : System.ComponentModel.IComponent * System.ComponentModel.IContainer -> unit
override this.AddInheritedComponents : System.ComponentModel.IComponent * System.ComponentModel.IContainer -> unit
Public Sub AddInheritedComponents (component As IComponent, container As IContainer)
参数
- component
- IComponent
用于搜索继承的组件以添加到指定容器中的组件。
- container
- IContainer
要将继承的组件添加到其中的容器。
实现
注解
此方法搜索指定组件的所有基类的所有字段。 实现 IComponent 的每个字段都添加到指定的容器中。
另请参阅
适用于
AddInheritedComponents(Type, IComponent, IContainer)
将由指定组件继承的指定类型的组件添加到 InheritanceService 中。
protected:
virtual void AddInheritedComponents(Type ^ type, System::ComponentModel::IComponent ^ component, System::ComponentModel::IContainer ^ container);
protected virtual void AddInheritedComponents (Type type, System.ComponentModel.IComponent component, System.ComponentModel.IContainer container);
protected virtual void AddInheritedComponents (Type? type, System.ComponentModel.IComponent component, System.ComponentModel.IContainer container);
abstract member AddInheritedComponents : Type * System.ComponentModel.IComponent * System.ComponentModel.IContainer -> unit
override this.AddInheritedComponents : Type * System.ComponentModel.IComponent * System.ComponentModel.IContainer -> unit
Protected Overridable Sub AddInheritedComponents (type As Type, component As IComponent, container As IContainer)
参数
- type
- Type
要搜索的基类型。
- component
- IComponent
用于搜索继承的组件以添加到指定容器中的组件。
- container
- IContainer
要将继承的组件添加到其中的容器。
注解
此方法搜索组件的所有基类的所有字段。 实现 IComponent 的每个字段都添加到一个内部列表中,该列表存储 InheritanceAttribute 标识组件的继承级别的 。 然后,该组件将添加到指定的容器。