Skip to content

Instantly share code, notes, and snippets.

@Athari
Last active August 29, 2015 14:20
Show Gist options
  • Save Athari/404d42a4912db919f6c6 to your computer and use it in GitHub Desktop.
Save Athari/404d42a4912db919f6c6 to your computer and use it in GitHub Desktop.
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media.Imaging;
class Program
{
[STAThread]
static void Main ()
{
new Window {
Content = new Image {
Source = BitmapFrame.Create(new Uri("http://i.stack.imgur.com/XAUao.png"))
}
}.ShowDialog();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment