开发者

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

开发者 https://www.devze.com 2023-03-06 00:30 出处:网络
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.

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

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.

B开发者_开发问答ut 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


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

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号