Control.CompanyName Propriété

Définition

Obtient le nom de la société ou du créateur de l'application contenant le contrôle.

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

Valeur de propriété

String

Nom de la société ou créateur de l'application contenant le contrôle.

Attributs

Exemples

L’exemple de code suivant affiche des informations sur l’application dans un Label contenu par un Form. Cet exemple nécessite que le CompanyNameparamètre , ProductName et ProductVersion qu’il ait été défini.

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

Remarques

La CompanyName propriété est une propriété en lecture seule. Pour modifier la valeur de cette propriété, définissez la Company valeur de la propriété .AssemblyCompanyAttribute La ligne de code C# suivante définit la CompanyName propriété.

[assembly: AssemblyCompany("Microsoft")]  

Notes

Il est vivement recommandé de fournir le nom de l’entreprise, le nom du produit et la version du produit pour votre application.

S’applique à

Voir aussi