I have two .png
files added to my resources which I need to access their Uri when doing binding.
My xaml
code is as followed:
Declare the Properties.Resources.LedGreen
property as ImageSource
and set it to Uri location rather than the Bitmap object.
Or if you insist of storing it as a bitmap you can get the source by returning Properties.Resources.LedGreen.ImageSource
which will be of type ImageSource
.
I would prefer the first approach.