Control.ProductVersion Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la version de l'assembly contenant le contrôle.
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
Valeur de propriété
Version de fichier de l'assembly 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 ProductVersion propriété est une propriété en lecture seule. Pour modifier la valeur de cette propriété, définissez la Version valeur de la propriété .AssemblyVersionAttribute La ligne de code C# suivante définit la ProductVersion propriété.
[assembly: AssemblyVersion("1.0.1")]
Notes
Il est vivement recommandé de fournir le nom de l’entreprise, le nom du produit et la version du produit. La fourniture de ces informations permet d’utiliser Windows Forms fonctionnalités telles que Application.UserAppDataPath celles qui facilitent l’écriture d’applications conformes au programme « Certifié pour Windows ».