gpt4 book ai didi

xamarin - 使用 FreshMVVM 的 ZXing View 不会触发 OnScanResult

转载 作者:行者123 更新时间:2023-12-04 03:50:27 26 4
gpt4 key购买 nike

Resoution TL;DR:https://gist.github.com/rupe120/78f8a57f0ed7ecacbdc13fa2da8d931a


我创建了自己的扫描页面,将内置的 ZXingScannerPage 代码 ( https://github.com/Redth/ZXing.Net.Mobile/blob/master/Source/ZXing.Net.Mobile.Forms/ZXingScannerPage.cs ) 转换为 Page + PageModel/View 概念。页面代码如下。

问题是 OnScanResult 永远不会被触发。

我之前直接使用 ZXingScannerPageOnScanResult 事件成功触发,但我希望页面遵循与应用程序其余部分相同的格式。所以我使用的二维码应该会触发它。

我一定是在 ZXingScannerView 中遗漏了一个设置部分,但我看不到它。

有什么想法吗?

SearchQrPage.xaml

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MyApp.Pages.SearchQrPage"
xmlns:zxing="clr-namespace:ZXing.Net.Mobile.Forms;assembly=ZXing.Net.Mobile.Forms">
<ContentPage.Content>
<Grid>
<zxing:ZXingScannerView x:Name="scannerView" />
<zxing:ZXingDefaultOverlay x:Name="scannerOverlay"
TopText="Hold your phone up to the QR code"
BottomText="Scanning will happen automatically"
ShowFlashButton="True"/>
</Grid>
</ContentPage.Content>
</ContentPage>

SearchQrPage.xaml.cs

using MyApp.PageModels;
using System;
using System.Collections.Generic;
using Xamarin.Forms;

namespace MyApp.Pages
{
public partial class SearchQrPage : ContentPage
{

public SearchQrPage()
{
InitializeComponent();

scannerView.Options = new ZXing.Mobile.MobileBarcodeScanningOptions
{
PossibleFormats =
new List<ZXing.BarcodeFormat>
{
ZXing.BarcodeFormat.QR_CODE
}
};

scannerView.OnScanResult += ScannerView_OnScanResult;

scannerOverlay.FlashButtonClicked += ScannerOverlay_FlashButtonClicked;
}

private void ScannerOverlay_FlashButtonClicked(Button sender, EventArgs e)
{
scannerView.ToggleTorch();
}

private void ScannerView_OnScanResult(ZXing.Result result)
{
var model = this.BindingContext as SearchQrPageModel;
if (model == null)
return;

scannerView.IsScanning = false;

if (model.ScanResultCommand.CanExecute(result))
model.ScanResultCommand.Execute(result);

}
}
}

最佳答案

例如,只需在构造函数中设置 IsScanning = true。在原始 ZXing 的页面上,他们在 OnAppearing 事件上执行此操作。

你错过了。

关于xamarin - 使用 FreshMVVM 的 ZXing View 不会触发 OnScanResult,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48524849/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com