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.
我有一个带有图像资源的 WPF 应用程序。当我构建程序时,bin 文件夹中有一个名为“resources”的目录,其中包含我的图像。如果我在没有文件夹的情况下运行程序,它会崩溃。如何将资源嵌入应用程序中,使其可以独立运行?
您必须将图像文件的构建操作设置为Resource,如这里所示。一个名为的图像文件的 UriImage.png将是这样的:
Resource
Image.png
pack://application:,,,/Resources/Image.png
另请参阅 WPF 中的 MSDN 页面Pack URI。