1
vote
2answers
2k views
How do I build a WPF application where I can drag and drop a user control between windows?
I'm building a simple Todo List application where I want to be able to have multiple lists floating around my desktop that I can label and manage tasks in.
The relevant UIElements in my app …
0
votes
2answers
2k views
Why does a WPF BitmapImage object not download an image from a Uri Source in ASP.Net Web Forms?
I'm trying to accomplish the following in ASP.Net:
Create a WPF Canvas control
Spin up a WPF Image control and a BitmapImage object
Set the BitmapImage source to a U …
2
votes
Setting WPF image source in code
Have you tried:
Assembly asm = Assembly.GetExecutingAssembly();
Stream iconStream = asm.GetManifestResourceStream("SomeImage.png");
BitmapImage bitmap = new BitmapImage();
bitmap.Be …
