Control.CompanyName プロパティ

定義

コントロールを含んでいるアプリケーションの会社または作成者の名前を取得します。

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

プロパティ値

String

コントロールを含んでいるアプリケーションの会社または作成者の名前。

属性

次のコード例では、アプリケーションに関する情報を表示します。Label Form この例では、〘CompanyNameProductNameProductVersion設定されている必要があります。

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")]  

注意

アプリの会社名、製品名、製品バージョンを指定することを強くお勧めします。

適用対象

こちらもご覧ください