Application.ProductName Property
.NET Framework 3.0
Gets the product name associated with this application.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
Assembly: System.Windows.Forms (in system.windows.forms.dll)
ProductName is taken from the metadata of the assembly containing the main form of the current application. You can set it by setting AssemblyProductAttribute inside of your assembly manifest. For more information, see Assembly Manifest.
The following code example gets this property and displays its value in a text box. The example requires that textBox1 has been placed on a form.
private void PrintProductName() { textBox1.Text = "The product name is: " + Application.ProductName; }
private void PrintProductName()
{
textBox1.set_Text("The product name is: "
+ Application.get_ProductName());
} //PrintProductName
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.