Control.CompanyName 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取包含控件的应用程序的公司名称或创建者。
public:
property System::String ^ CompanyName { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
public string CompanyName { get; }
[<System.ComponentModel.Browsable(false)>]
member this.CompanyName : string
Public ReadOnly Property CompanyName As String
属性值
包含控件的应用程序的公司名称或创建者。
- 属性
示例
下面的代码示例显示有关包含的应用程序LabelForm的信息。 本示例要求 CompanyName设置并 ProductName ProductVersion 已设置。
void AboutDialog_Load( Object^ /*sender*/, EventArgs^ /*e*/ )
{
// Display the application information in the label.
this->labelVersionInfo->Text = String::Format( "{0} {1} Version: {2}", this->CompanyName, this->ProductName, this->ProductVersion );
}
private void AboutDialog_Load(object sender, EventArgs e)
{
// Display the application information in the label.
this.labelVersionInfo.Text =
this.CompanyName + " " +
this.ProductName + " Version: " +
this.ProductVersion;
}
Private Sub AboutDialog_Load(sender As Object, e As EventArgs) Handles MyBase.Load
' Display the application information in the label.
Me.labelVersionInfo.Text = _
Me.CompanyName + " " + _
Me.ProductName + " Version: " + _
Me.ProductVersion
End Sub
注解
该 CompanyName 属性是只读属性。 若要更改此属性的值,请设置 Company 该 AssemblyCompanyAttribute属性的属性值。 以下 C# 代码行设置属性 CompanyName 。
[assembly: AssemblyCompany("Microsoft")]
备注
强烈建议为应用提供公司名称、产品名称和产品版本。