Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有一个 C# 应用程序在启动时将大量图像(100 多张图像)加载到带有大图块的 itemView 控件中,我相信我可以将图像添加到应用程序的资源中,但我也可以在 appData 中创建一个隐藏的背景文件夹我相信会减慢加载过程的用户,我们不希望这样。谢谢
我知道了!最好的方法是首先创建一个列表或任何您需要保存在应用程序缓存中的列表。
然后以编程方式更新资源对象,如下所示:
IResourceWriter writer = new ResourceWriter("Resources.Images"); writer.AddResource("ImgList", ImageList); writer.Generate();
然后您可以使用 ResourceReader 完美地检索列表!和快。