I am trying to create Bitmapusing:
bitmap = new Bitmap(@"Movies\View\Images\missing_person.bmp");
However, I get an error System.ArgumentException.
The file I'm calling from is in:
MyProj\DisplaySideBarCommand.cs
Images are in:
MyProj\Movies\View\Images\missing_person.bmp
I also tried using:
bitmap = new Bitmap(@"..\Movies\View\Images\missing_person.bmp");
but got the same error.
user2268507
source
share