Windows Phone 8.1中的ZXing.Net.Mobile

时间:2016-09-25 19:46:22

标签: windows-phone-8.1 qr-code zxing

我在Windows Phone 8.1应用中使用ZXing.Net.Mobile。它使用以下参考:

  • ZXing.Net.Mobile.Core
  • zxing.portable
  • ZXingNetMobile

我的代码:

var scanner = new MobileBarcodeScanner();

MobileBarcodeScanningOptions options = new MobileBarcodeScanningOptions();
options.TryHarder = true;
options.PossibleFormats.Add(ZXing.BarcodeFormat.CODE_128);
options.PossibleFormats.Add(ZXing.BarcodeFormat.CODE_39);

var result = await scanner.Scan(options);

if (result != null)
{
    MessageDialog a = new MessageDialog(result.Text);
    a.Content = result.Text;
    a.ShowAsync();
}

问题: 每当扫描方法执行时,我都会遇到问题。 在ZXing.Mobile.MobileBarcodeScanner.Scan( ....

使用特定于平台的实现

有没有可用于Windows Phone 8.1的实时QR码扫描程序?

0 个答案:

没有答案