I've been tearing my hair out over this issue for the last hour or so.
I have some code that goes like this:
videoTile.Icon = new ImageSourceConverter().ConvertFrom(coDrivr4.Properties.Resources.Music.GetHbitmap()) as ImageSource;
When I run my code, it says a NullReferenceException occurred. Neither 'Music' nor the return of GetHbitmap() are null.
I'm trying to get the image via the Properties because it's the only way I've figured out how to access the images in my Resources folder. I would just add them to the app.xaml file as a resource, but I'm not using an app.xaml file for a few reasons.
Am I attempting this wrong? All I need to do is get an ImageSource object of an image I have in my Resource directory. I can use them just fine in my XAML, but can't for the life of me do it in any code.
P.S.: I can't just add them as a resource to the XAML file because this is just a class and so there is no XAML file.