在Windows Phone app 8.1中创建WriteableBitmap?

时间:2015-08-02 11:37:21

标签: c# windows-phone-8.1 writeablebitmap

我在windows phone app中创建了qr代码扫描。

if(action.equals(BluetoothDevice.ACTION_FOUND)){
    BluetoothDevice device = -intentData.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
    if(device != null) {
        //code to push in listview
    }
}

在上面的代码中我在" BitmapFactory"中遇到错误。

它显示以下错误:

  

类型或命名空间名称' BitmapFactory'不存在于   命名空间' Windows.UI.Xaml.Media.Imaging' (你错过了一个集会吗?   引用?)

1 个答案:

答案 0 :(得分:2)

您错过了WritableBitmapEx.WinRT.dll。它位于Sample Projects bin中 - >调试文件夹。如果已在参考文献中列出,请将其删除并重新添加。然后它会工作!