Saving WPF Assets

3.1k Views Asked by At

I am creating a WPF app where I'd like to create an Assets folder which will contain my images etc, then access them via a relative path, if possible.

Assuming my folder structure is as follows:

Application > Bin > Debug > EXE

Where should I create my Assets folder? And how would I access it from a relative path in XAML. I.e. Assests/Images/MyImage.jpg

1

There are 1 best solutions below

2
On BEST ANSWER

If you create Assets folder directly in Visual Studio solution, then you can access those assets this way Assests/Images/MyImage.jpg without problems. Don't forget to set Build action to Content.