Mega Code Archive

 
Categories / C# Tutorial / WPF
 

WPF message box

using System; using System.Windows;   class MyApp {     [STAThread]     static void Main() {       MessageBox.Show("Hello, WPF");     }   }