Possible Duplicate:
WPF image resources
I have some images in my VS C# project that are declared as embedded resources. I'm accessing them in the .cs file using:
Stream logoStream = GetType().Assembly.GetManifestResourceStream("ProjNS.Image.logo.png");
Bitmap logo = new Bitmap(logoStream);
But how can I access my logo in the .xaml file?