Etiam placerat

Example Hello Program , WPF

// Hello.cs
using System;
using System.Windows; // the root WPF namespace
namespace MyFirstAvalonApp
{
class MyApp {
[STAThread]
static void Main( ) {
// the WPF message box
MessageBox.Show("Hello, Avalon");
}
}
}

0 comments: