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# windows 应用程序的资源文件夹中获取图像?我已经尝试过不同的方式。但我力求得到正确的解决方案。
我需要路径:“c:test\windowsapp\Resouces\bar.png”而不是启动和可执行路径等。帮帮我
试试这个:
var filePath = System.Reflection.Assembly.GetExecutingAssembly() .Location + @"\..\..\Resources\bar.png";
如果您的图像是有效资源,您可以通过以下方式访问它:Properties.Resources
Properties.Resources