ComponentDesigner.OnSetComponentDefaults 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注意
This method has been deprecated. Use InitializeNewComponent instead. http://go.microsoft.com/fwlink/?linkid=14202
注意
This method has been deprecated. Use InitializeNewComponent instead. https://go.microsoft.com/fwlink/?linkid=14202
设置组件的默认属性。
public:
virtual void OnSetComponentDefaults();
public virtual void OnSetComponentDefaults ();
[System.Obsolete("This method has been deprecated. Use InitializeNewComponent instead. http://go.microsoft.com/fwlink/?linkid=14202")]
public virtual void OnSetComponentDefaults ();
[System.Obsolete("This method has been deprecated. Use InitializeNewComponent instead. https://go.microsoft.com/fwlink/?linkid=14202")]
public virtual void OnSetComponentDefaults ();
abstract member OnSetComponentDefaults : unit -> unit
override this.OnSetComponentDefaults : unit -> unit
[<System.Obsolete("This method has been deprecated. Use InitializeNewComponent instead. http://go.microsoft.com/fwlink/?linkid=14202")>]
abstract member OnSetComponentDefaults : unit -> unit
override this.OnSetComponentDefaults : unit -> unit
[<System.Obsolete("This method has been deprecated. Use InitializeNewComponent instead. https://go.microsoft.com/fwlink/?linkid=14202")>]
abstract member OnSetComponentDefaults : unit -> unit
override this.OnSetComponentDefaults : unit -> unit
Public Overridable Sub OnSetComponentDefaults ()
- 属性
注解
OnSetComponentDefaults 在初始化设计器时调用 。 这允许设计器为基组件提供默认值。
此方法仅调用一次:首次通过将组件从工具箱拖动到设计图面来创建组件时。 设计器的后续初始化不会调用此方法。
如果默认属性是字符串,并且尚未设置该属性,则此方法的默认实现会将组件的默认属性设置为组件的名称。 此方法可以在派生类中实现,以自定义此设计器正在设计的组件的初始化。