Visual studio will create the Resources folder and place the image file in it when you add the image to the resx file.
To use this image in a binding, you will need to change the build action from None to Resource. After that, you can communicate as follows:
<Image Source="Resources/your_image_name.png"/>
You cannot directly link to Propetries.Resources.your_image_name because you will need to convert System.Drawing.Bitmap to WPF BitmapSource. But you can bind to strings in Resource.resx:
<TextBlock Text="{x:Static properties:Resources.YourStringResource}"></TextBlock>
Read here how to convert System.Darwing.Bitmap to a WPF bitmap: Download WPF BitmapImage from System.Drawing.Bitmap
And here is about binding to values ββin resx file: Get values ββfrom * .resx files in XAML
source share