Control.CompanyName 屬性
定義
取得包含控制項之應用程式的公司名稱或建立者。Gets the name of the company or creator of the application containing the control.
public:
property System::String ^ CompanyName { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
public string CompanyName { get; }
member this.CompanyName : string
Public ReadOnly Property CompanyName As String
屬性值
包含控制項之應用程式的公司名稱或建立者。The company name or creator of the application containing the control.
- 屬性
範例
下列程式碼範例會在 Form所包含的 Label 中顯示應用程式的相關資訊。The following code example displays information about the application in a Label contained by a Form. 這個範例需要設定 CompanyName、ProductName 和 ProductVersion。This example requires that the CompanyName, ProductName and ProductVersion have been set.
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 屬性是唯讀屬性。The CompanyName property is a read-only property. 若要變更這個屬性的值,請設定 AssemblyCompanyAttribute的 Company 屬性值。To change the value of this property, set the Company property value of the AssemblyCompanyAttribute. 下面這行程式C#代碼會設定 CompanyName 屬性。The following line of C# code sets the CompanyName property.
[assembly: AssemblyCompany("Microsoft")]
注意
強烈建議您提供應用程式的公司名稱、產品名稱和產品版本。It is strongly recommended that you provide the company name, product name, and product version for your app.