WPF C# Tutorial

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