Control.ProductName Proprietà

Definizione

Ottiene il nome del prodotto dell'assembly che contiene il controllo.

public:
 property System::String ^ ProductName { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
public string ProductName { get; }
[<System.ComponentModel.Browsable(false)>]
member this.ProductName : string
Public ReadOnly Property ProductName As String

Valore della proprietà

String

Nome del prodotto dell'assembly che contiene il controllo.

Attributi

Esempio

Nell'esempio di codice seguente vengono visualizzate informazioni sull'applicazione in un oggetto Label contenuto in un oggetto Form. In questo esempio è necessario che sia CompanyNamestato impostato e 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

Commenti

La ProductName proprietà è una proprietà di sola lettura. Per modificare il valore di questa proprietà, impostare il Product valore della proprietà di AssemblyProductAttribute. La riga di codice C# seguente imposta la ProductName proprietà .

[assembly: AssemblyProduct("MyApplication")]  

Nota

È consigliabile specificare il nome della società, il nome del prodotto e la versione del prodotto. Fornire queste informazioni consente l'uso di funzionalità di Windows Forms, ad Application.UserAppDataPath esempio che semplificano la scrittura di applicazioni conformi al programma "Certified for Windows".

Si applica a

Vedi anche