LoginViewDesigner.Initialize(IComponent) 方法

定义

准备设计器,以查看、编辑和设计关联的组件。

public:
 override void Initialize(System::ComponentModel::IComponent ^ component);
public override void Initialize (System.ComponentModel.IComponent component);
override this.Initialize : System.ComponentModel.IComponent -> unit
Public Overrides Sub Initialize (component As IComponent)

参数

component
IComponent

一个 LoginView,它实现 IComponent

例外

component 不是 LoginView,也不属于 LoginView 的派生类。

示例

下面的代码示例演示如何重写 InitializeLoginViewDesigner 类继承的类中的 方法,以更改在设计时派生自 类的 LoginView 控件的行为。 如果关联的控件不是 MyLoginView 对象,则示例将引发 ArgumentException

public override void Initialize(IComponent component)
{
    // Ensure that only a MyLoginView can be created in this designer.
    if (!(component is MyLoginView))
        throw new ArgumentException();

    // Call the base method to generate the markup.
    base.Initialize(component);
} // Initialize
' Generate the design time markup.
Public Overrides Sub Initialize(ByVal component As IComponent)

    ' Ensure that only a MyLoginView can be created in this designer. 
    If Not TypeOf component Is MyLoginView Then
        Throw New ArgumentException()
    End If

    ' Call the base method to generate the markup.
    MyBase.Initialize(component)

End Sub

注解

可视设计器在准备好使用设计器呈现LoginView控件时调用 Initialize 方法。 Initialize及其基方法配置属性并设置设计器操作所需的事件。

component参数是LoginView与此设计器关联的控件或控件的副本LoginView

适用于

另请参阅