用于Windows Phone的QR码阅读器

时间:2014-02-14 13:55:55

标签: c# windows-phone-8 windows-phone visual-studio-2013

我正在使用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?)

为什么我收到此错误?

2 个答案:

答案 0 :(得分:3)

确保添加使用:

using Microsoft.Devices;

因为PhotoCamera类可以从Microsoft.Devices命名空间获得。否则,您将需要使用完全限定的类名:

private Microsoft.Devices.PhotoCamera camera;

答案 1 :(得分:2)

可能缺少所需的使用:

using Microsoft.Devices;