Application.ProductName 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 le nom du produit associé à cette application.
public:
static property System::String ^ ProductName { System::String ^ get(); };
public static string ProductName { get; }
member this.ProductName : string
Public Shared ReadOnly Property ProductName As String
Valeur de propriété
Nom du produit.
Exemples
L’exemple de code suivant obtient cette propriété et affiche sa valeur dans une zone de texte. L’exemple nécessite qu’il textBox1
ait été placé sur un formulaire.
private:
void PrintProductName()
{
textBox1->Text = "The product name is: {0}",
Application::ProductName;
}
private void PrintProductName() {
textBox1.Text = "The product name is: " +
Application.ProductName;
}
Private Sub PrintProductName()
textBox1.Text = "The product name is: " & _
Application.ProductName
End Sub
Remarques
ProductName
est extrait des métadonnées de l’assembly contenant la forme principale de l’application actuelle. Vous pouvez le définir en définissant AssemblyProductAttribute à l’intérieur de votre manifeste d’assembly. Pour plus d’informations, consultez Le manifeste d’assembly.