Control.ProductVersion Proprietà

Definizione

Ottiene la versione dell'assembly che contiene il controllo.

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

Valore della proprietà

Versione del file dell'assembly che contiene il controllo.

Attributi

Esempio

Nell'esempio di codice seguente vengono visualizzate informazioni sull'applicazione in un Label oggetto contenuto in .Form In questo esempio è necessario che l'oggetto CompanyNamee ProductNameProductVersion sia stato impostato.

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 ProductVersion proprietà è una proprietà di sola lettura. Per modificare il valore di questa proprietà, impostare il Version valore della proprietà dell'oggetto AssemblyVersionAttribute. La riga di codice C# seguente imposta la ProductVersion proprietà.

[assembly: AssemblyVersion("1.0.1")]

Nota

È consigliabile specificare il nome dell'azienda, il nome del prodotto e la versione del prodotto. Fornendo queste informazioni, l'uso delle funzionalità di Windows Forms, ad esempio, Application.UserAppDataPath semplifica la scrittura di applicazioni conformi al programma "Certified for Windows".

Si applica a

Vedi anche