WPF GifBitmapDecoder Uri 相对路径问题
我试图将 Uri 对象的 uriString 设置为在 GifBitmapDecoder 中使用的相对路径。
在运行时我收到以下错误:
URI 无效:无法确定 URI 的格式。
我的相对路径遵循以下格式:
/TestApplication;component/Images/Busy.gif
如果我使用图像的绝对路径,一切都会完美!
任何帮助将不胜感激!
I am trying to set the uriString of a Uri object to a relative path for use in a GifBitmapDecoder.
At runtime i get the following error:
Invalid URI: The format of the URI could not be determined.
My relative path follows the following format:
/TestApplication;component/Images/Busy.gif
If i use the absolute path to the image, all works perfectly!
Any help would be appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到答案:
http://msdn.microsoft.com/en-us/ library/aa970069.aspx
我缺少以下内容: pack://application:,,, 在我的相对路径前面。
Found the answer at:
http://msdn.microsoft.com/en-us/library/aa970069.aspx
I was missing the following: pack://application:,,, infront of my relative path.