CreateParams.ClassName 属性

定义

获取或设置从中派生该控件的 Windows 类的名称。

public:
 property System::String ^ ClassName { System::String ^ get(); void set(System::String ^ value); };
public string ClassName { get; set; }
public string? ClassName { get; set; }
member this.ClassName : string with get, set
Public Property ClassName As String

属性值

String

从中派生该控件的 Windows 类的名称。

注解

此属性的默认值是 null,指示控件不是从现有控件类派生的。 若要从现有控件类派生,请将系统类名称存储在此属性中。 例如,若要从标准 Button 控件派生,请将此属性设置为“BUTTON”。

适用于