I don't understand why this code doesn't work
<Image Source="pack://application:,,,/Resources/Steam.png" Width="30"/>
https://stackoverflow.com/questions/62032643/using-image-in-xaml-from-resources-resx
how should I use embedded resource? I just don't want all the resources to be in the bin folder can someone help me on how to use EmbeddedResource in Xaml?
<Image Source="pack://application:,,,/Resources/Steam.png" Width="30"/>
<Image Source="/Resources/Steam.png" Width="30"/>
<ItemGroup>
<EmbeddedResource Include="Resources\Steam.png" />
</ItemGroup>
I tried many options but didn't work for me

