Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions programming/maui/user-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ In the **NuGet Package Manager>Manage Packages for Solution** of your project, s

### Visual Studio for Windows

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

1. Add the library in the project file:

Expand Down Expand Up @@ -125,7 +125,7 @@ Add NuGet package **Dynamsoft.CaptureVisionBundle.Maui** to your project. You ca

### Initialize MauiProgram

In **MauiProgram.cs**, add a custom handler for the `CameraView` control. Specifically, it maps the `CameraView` type to the `CameraViewHandler` type.
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.

```c#
namespace SimpleDocumentScanner;
Expand Down Expand Up @@ -225,7 +225,7 @@ public partial class MainPage : ContentPage, ILicenseVerificationListener, ICapt

### Add the CameraView control in the Main Page

In the **MainPage.xaml**, add a `CameraView` control:
In the **MainPage.xaml**, add a [`CameraView`]({{ site.dce_maui_api }}camera-view.html) control:

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

### Obtaining Normalized Document Image

In **MainPage.xaml.cs**, implement `ICapturedResultReceiver` to receive normalized images result in `OnNormalizedImagesReceived` callback function.
In **MainPage.xaml.cs**, implement [`ICapturedResultReceiver`]({{ site.dcv_maui_api }}capture-vision-router/auxiliary-classes/captured-result-receiver.html) to receive normalized images result in [`OnNormalizedImagesReceived`]({{ site.dcv_maui_api }}capture-vision-router/auxiliary-classes/captured-result-receiver.html#onnormalizedimagesreceived) callback function.

```c#
......
Expand Down