diff --git a/MAUI/ImageEditor/events.md b/MAUI/ImageEditor/events.md index 2ed2296b9..5b67d06ed 100644 --- a/MAUI/ImageEditor/events.md +++ b/MAUI/ImageEditor/events.md @@ -36,6 +36,29 @@ 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" hl_lines="3" %} + + +{% endhighlight %} +{% highlight C# tabtitle="MainPage.xaml.cs" %} + + private async void OnAnnotationsDeserialized(object? sender, EventArgs e) + { + await DisplayAlert("", "Annotations 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 +109,4 @@ The [`BrowseImage`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.ImageEdi {% endhighlight %} -{% endtabs %} +{% endtabs %} \ No newline at end of file