当位图图像的源是 Build Action = Resource 的图像时,如何以编程方式创建位图图像?
当位图图像的源是 Build Action = Resource 的图像时,如何以编程方式创建位图图像?
当我尝试以下操作时,我收到无效的 URI 异常:(
BitmapImage image = new BitmapImage(new Uri("/MyAssembly;component/Images/MyImage.png"));
我正在使用 silverlight 4,并且此代码位于我的解决方案的许多项目之一中(它是 silverlight 类库,而不是 silverlight 应用程序)。
How to create a bitmap image programmatically when its source is an image with Build Action = Resource?
When I try the following I get an invalid URI exception :(
BitmapImage image = new BitmapImage(new Uri("/MyAssembly;component/Images/MyImage.png"));
I'm using silverlight 4 and this code is inside one of the many projects of my solution (it's a silverlight class library and not the silverlight application).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应该是:
Images/MyImage.png
还假设您的图像位于名为Images
的文件夹内。should be:
Images/MyImage.png
also assumes your image is located inside a folder calledImages
.