WriteableBitmap 不可用?
我发现什么可能是 WriteableBitmap
? 我尝试按照文档包含相关命名空间:
using namespace System::Windows::Media;
using namespace System::Windows::Media::Imaging;
但这只会给我带来错误:
d:\experiments\graphicscontrols\graphicscontrollib\GraphicsControlLibControl.h(9) : error C2039: 'Media' : is not a member of 'System::Windows'
d:\experiments\graphicscontrols\graphicscontrollib\GraphicsControlLibControl.h(10) : error C3083: 'Media': the symbol to the left of a '::' must be a type
d:\experiments\graphicscontrols\graphicscontrollib\GraphicsControlLibControl.h(10) : error C2039: 'Imaging' : is not a member of 'System::Windows'
d:\experiments\graphicscontrols\graphicscontrollib\GraphicsControlLibControl.h(52) : error C2065: 'WriteableBitmap' : undeclared identifier
我是否安装了旧版本的 .net 还是其他版本? 有什么方法可以知道 Visual Studio 使用的是什么版本吗? 我已经将 VS 更新到了 service pack 1,这没有什么区别。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须以 .Net Framework 3.0 或 3.5 为目标才能获得此功能。 您还需要添加对PresentationCore.dll 的引用。
You must target .Net framework 3.0 or 3.5 to get this. Also you will need to add a ref to PresentationCore.dll.