You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: programming/maui/user-guide.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@ View the [installation section](#installation) on how to add the library.
123
123
124
124
### Initialize MauiProgram
125
125
126
-
In **MauiProgram.cs**, add a custom handler for the `CameraView`control. Specifically, it maps the `CameraView` type to the `CameraViewHandler` type.
126
+
In **MauiProgram.cs**, add a custom handler for the [`CameraView`]({{ site.dce_maui_api }}camera-view.html) control. Specifically, it maps the [`CameraView`]({{ site.dce_maui_api }}camera-view.html) type to the `CameraViewHandler` type.
127
127
128
128
```c#
129
129
using Microsoft.Extensions.Logging;
@@ -305,7 +305,7 @@ Open the **Info.plist** file under the **Platforms/iOS/** folder (Open with XML
305
305
306
306
### Obtaining Barcode Results
307
307
308
-
In **MainPage.xaml.cs**, implement `ICapturedResultReceiver`to receive decoded barcodes result in `OnDecodedBarcodesReceived` callback function.
308
+
In **MainPage.xaml.cs**, implement [`ICapturedResultReceiver`]({{ site.dbr_maui_api }}capture-vision-router-lite/captured-result-receiver.html) to receive decoded barcodes result in [`OnDecodedBarcodesReceived`]({{ site.dbr_maui_api }}capture-vision-router-lite/captured-result-receiver.html#ondecodedbarcodesreceived) callback function.
309
309
310
310
```c#
311
311
usingDynamsoft.BarcodeReader.Maui;
@@ -338,15 +338,15 @@ Select your device and run the project.
338
338
339
339
### Switching Preset Templates
340
340
341
-
Dynamsoft Barcode Reader SDK offers several preset templates for different popular scenarios. For the full set of templates, please refer to `EnumPresetTemplate`. Here is a quick example of prioritizing read rate for decoding:
341
+
Dynamsoft Barcode Reader SDK offers several preset templates for different popular scenarios. For the full set of templates, please refer to [`EnumPresetTemplate`]({{ site.dbr_maui_api }}capture-vision-router-lite/preset-template.html). Here is a quick example of prioritizing read rate for decoding:
### Configuring the SimplifiedBarcodeReaderSettings
348
348
349
-
The SDK also supports a more granular control over the individual runtime settings rather than using a preset template. The main settings that you can control via this interface are which barcode formats to read, the expected number of barcodes to be read in a single image or frame, and the timeout, etc. For more info on each, please refer to `SimplifiedBarcodeReaderSettings`. Here is a quick example:
349
+
The SDK also supports a more granular control over the individual runtime settings rather than using a preset template. The main settings that you can control via this interface are which barcode formats to read, the expected number of barcodes to be read in a single image or frame, and the timeout, etc. For more info on each, please refer to [`SimplifiedBarcodeReaderSettings`]({{ site.dbr_maui_api }}simplified-barcode-reader-settings.html). Here is a quick example:
0 commit comments