Skip to content

Commit e839515

Browse files
Merge pull request #328 from dynamsoft-docs/preview
Preview
2 parents cc8e0e6 + 02a0d56 commit e839515

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

programming/maui/user-guide.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ In the **NuGet Package Manager>Manage Packages for Solution** of your project, s
6868

6969
### Visual Studio for Windows
7070

71-
You have to Add the library via the project file and do some additional steps to complete the installation.
71+
You need to add the library via the project file and complete additional steps for the installation.
7272

7373
1. Add the library in the project file:
7474

@@ -123,7 +123,7 @@ View the [installation section](#installation) on how to add the library.
123123

124124
### Initialize MauiProgram
125125

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.
127127

128128
```c#
129129
using Microsoft.Extensions.Logging;
@@ -221,7 +221,7 @@ public partial class MainPage : ContentPage, ILicenseVerificationListener, ICapt
221221

222222
### Add the CameraView in the Main Page
223223

224-
In the **MainPage.xaml**, add the `CameraView` and `Label` controls:
224+
In the **MainPage.xaml**, add the [`CameraView`]({{ site.dce_maui_api }}camera-view.html) and `Label` controls:
225225

226226
```xml
227227
<?xml version="1.0" encoding="utf-8" ?>
@@ -305,7 +305,7 @@ Open the **Info.plist** file under the **Platforms/iOS/** folder (Open with XML
305305

306306
### Obtaining Barcode Results
307307

308-
In **MainPage.xaml.cs**, implement `ICapturedResultReceiver` to receive decoded barcodes result in `OnDecodedBarcodesReceived` callback function.
308+
In **MainPage.xaml.cs**, implement [`ICapturedResultReceiver`]({{ site.dcv_maui_api }}capture-vision-router/auxiliary-classes/captured-result-receiver.html) to receive decoded barcodes result in [`OnDecodedBarcodesReceived`]({{ site.dcv_maui_api }}capture-vision-router/auxiliary-classes/captured-result-receiver.html#ondecodedbarcodesreceived) callback function.
309309

310310
```c#
311311
using Dynamsoft.BarcodeReader.Maui;
@@ -338,15 +338,15 @@ Select your device and run the project.
338338

339339
### Switching Preset Templates
340340

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.dcv_maui_api }}capture-vision-router/auxiliary-classes/preset-template.html). Here is a quick example of prioritizing read rate for decoding:
342342

343343
```c#
344344
router.StartCapturing(EnumPresetTemplate.PT_READ_BARCODES_READ_RATE_FIRST, this);
345345
```
346346

347347
### Configuring the SimplifiedBarcodeReaderSettings
348348

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:
350350

351351
```c#
352352
var cvSettings = router.GetSimplifiedSettings(EnumPresetTemplate.PT_READ_BARCODES);

0 commit comments

Comments
 (0)