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
@@ -65,7 +65,7 @@ In the **NuGet Package Manager>Manage Packages for Solution** of your project, s
65
65
66
66
### Visual Studio for Windows
67
67
68
-
You have to Add the library via the project file and do some additional steps to complete the installation.
68
+
You need to add the library via the project file and complete additional steps for the installation.
69
69
70
70
1. Add the library in the project file:
71
71
@@ -125,7 +125,7 @@ Add NuGet package **Dynamsoft.CaptureVisionBundle.Maui** to your project. You ca
125
125
126
126
### Initialize MauiProgram
127
127
128
-
In **MauiProgram.cs**, add a custom handler for the `CameraView`control. Specifically, it maps the `CameraView` type to the `CameraViewHandler` type.
128
+
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.
129
129
130
130
```c#
131
131
namespace SimpleDocumentScanner;
@@ -225,7 +225,7 @@ public partial class MainPage : ContentPage, ILicenseVerificationListener, ICapt
225
225
226
226
### Add the CameraView control in the Main Page
227
227
228
-
In the **MainPage.xaml**, add a `CameraView` control:
228
+
In the **MainPage.xaml**, add a [`CameraView`]({{ site.dce_maui_api }}camera-view.html) control:
229
229
230
230
```xml
231
231
<?xml version="1.0" encoding="utf-8" ?>
@@ -305,7 +305,7 @@ Open the **Info.plist** file under the **Platforms/iOS/** folder (Open with XML
305
305
306
306
### Obtaining Normalized Document Image
307
307
308
-
In **MainPage.xaml.cs**, implement `ICapturedResultReceiver`to receive normalized images result in `OnNormalizedImagesReceived` callback function.
308
+
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.
0 commit comments