How to get all the image resources in a project’s

2019-08-07 18:58发布

enter image description here

I have a project like this; I want to get all the images in the “Images” folder.

If all the png files are stored in a folder on the disk, this would be easy.

But they are embedded in the project, then how can I access them?

Or even further, how do I get a tree data structure of the image resources?

Thanks

1条回答
萌系小妹纸
2楼-- · 2019-08-07 19:15

You can access them using a package URI:

Image image = new Image();
image.Source = new BitmapImage(new Uri(“pack://application:,,,/Images/ImageCategory1/Burn Disc.png”));

If you want to get the folder structure:

I am afraid there is no folder structure other than that the structure in the project is added to the name of each resource.

Fortunately there is a way to enumerate all resources: searching and listing WPF resource dictionaries in a folder

查看更多
登录 后发表回答