I am trying to set an image source in WPF but relative Uri doesn't work.
imgView.Source = new BitmapImage(new Uri("Res/Images/img.png", UriKind.Relative));
But this works:
imgView.Source = new BitmapImage(new Uri("E:/C#/Folder/Project/Res/Images/img.png", UriKind.Absolute));
What should I change in relative Uri?