From 423a82aba47d893edaf0dd2d973f1338dee85a1a Mon Sep 17 00:00:00 2001 From: AARTHI Date: Tue, 14 Oct 2025 10:31:06 +0530 Subject: [PATCH 1/2] 986416-Added ImageEditor Vol3 SP1 feature UG content. --- MAUI/ImageEditor/events.md | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/MAUI/ImageEditor/events.md b/MAUI/ImageEditor/events.md index 2ed2296b91..bca5155860 100644 --- a/MAUI/ImageEditor/events.md +++ b/MAUI/ImageEditor/events.md @@ -36,6 +36,31 @@ This [`ImageLoaded`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.ImageEd N> [View sample in GitHub](https://github.com/SyncfusionExamples/maui-image-editor-examples/tree/master/ImageLoadedSample) +## Annotations deserialized event + +This `AnnotationsDeserialized` event occurs when annotations are deserialized onto the image. + +N> Serialization and deserialization are not applicable for custom annotation views. + +{% tabs %} + +{% highlight xaml tabtitle="MainPage.xaml" %} + + + +{% endhighlight %} + +{% highlight C# tabtitle="MainPage.xaml.cs" %} + + private async void OnAnnotationsDeserialized(object? sender, EventArgs e) + { + await DisplayAlert("Alert", "Annotation are deserialized", "Ok"); + } + +{% endhighlight %} + +{% endtabs %} + ## Annotation selected event This [`AnnotationSelected`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.ImageEditor.SfImageEditor.html#Syncfusion_Maui_ImageEditor_SfImageEditor_AnnotationSelected) event occurs when the annotation is selected. @@ -86,4 +111,4 @@ The [`BrowseImage`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.ImageEdi {% endhighlight %} -{% endtabs %} +{% endtabs %} \ No newline at end of file From e4b41bd32cf996c1dff72542793e21b31ef26a1b Mon Sep 17 00:00:00 2001 From: AARTHI Date: Tue, 14 Oct 2025 11:38:49 +0530 Subject: [PATCH 2/2] 986416-Addressed review changes. --- MAUI/ImageEditor/events.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/MAUI/ImageEditor/events.md b/MAUI/ImageEditor/events.md index bca5155860..5b67d06ed9 100644 --- a/MAUI/ImageEditor/events.md +++ b/MAUI/ImageEditor/events.md @@ -40,25 +40,23 @@ N> [View sample in GitHub](https://github.com/SyncfusionExamples/maui-image-edit This `AnnotationsDeserialized` event occurs when annotations are deserialized onto the image. -N> Serialization and deserialization are not applicable for custom annotation views. +N> `Serialization` and `deserialization` are not applicable for custom annotation views. {% tabs %} - -{% highlight xaml tabtitle="MainPage.xaml" %} - - +{% highlight xaml tabtitle="MainPage.xaml" hl_lines="3" %} + {% endhighlight %} - {% highlight C# tabtitle="MainPage.xaml.cs" %} private async void OnAnnotationsDeserialized(object? sender, EventArgs e) { - await DisplayAlert("Alert", "Annotation are deserialized", "Ok"); + await DisplayAlert("", "Annotations are deserialized", "Ok"); } {% endhighlight %} - {% endtabs %} ## Annotation selected event