我正在使用Windows Phone应用,我需要一个简单的QR码阅读器。我正在关注a tutorial。
我做了所有事情,现在我必须添加
private PhotoCamera camera;
但总有这个错误:
The type or namespace name 'PhotoCamera' could not be found (are you missing a using directive or an assembly reference?)
为什么我收到此错误?
答案 0 :(得分:3)
确保添加使用:
using Microsoft.Devices;
因为PhotoCamera
类可以从Microsoft.Devices
命名空间获得。否则,您将需要使用完全限定的类名:
private Microsoft.Devices.PhotoCamera camera;
答案 1 :(得分:2)
可能缺少所需的使用:
using Microsoft.Devices;