我使用 WindowsPhone 8 项目和 WP8 DLL 构建了一个模块化应用程序。我尝试在 WP8 项目后面的代码中引用 DLL 中的图像。
我试过了
image.Source = new BitmapImage(new Uri(@"pack://application:,,,/DllAssemblyName;component/Assets/image.png",
UriKind.Absolute));
在这里我得到一个Invalid URI: Invalid port specified.
我也试过
image.Source = new BitmapImage(new Uri(@"/DllAssemblyName;component/Assets/image.png",
UriKind.RelativeOrAbsolute));
这项工作没有例外,但图像不可见。
我错了什么?