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
プロパティ値
コントロールを含んでいるアプリケーションの会社または作成者の名前。
- 属性
例
次のコード例では、アプリケーションに関する情報を表示します。Label Form この例では、〘CompanyNameProductNameが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")]
注意
アプリの会社名、製品名、製品バージョンを指定することを強くお勧めします。