- 
                Notifications
    You must be signed in to change notification settings 
- Fork 29
986416 - Vol3, SP1 2025 UG content changes for ImageEditor team controls #3726
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: development
Are you sure you want to change the base?
Changes from 2 commits
c1acfb3
              b02e659
              e3fc3ba
              159082c
              70d0156
              6b7cbcc
              d9ef01b
              File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -87,3 +87,31 @@ The [`BrowseImage`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.ImageEdi | |
| {% endhighlight %} | ||
|  | ||
| {% endtabs %} | ||
|  | ||
| ## AnnotationsDeserialized event | ||
|  | ||
| The 'AnnotationsDeserialized' event is triggered each time deserialization completes and annotations are applied to the ImageEditor control. This allows users to validate the data, update the UI, or execute custom business logic. | ||
|          | ||
|  | ||
| N> Serialization and deserialization are not applicable for custom annotation views. | ||
|  | ||
| {% tabs %} | ||
|  | ||
|          | ||
| {% highlight xaml tabtitle="MainPage.xaml" %} | ||
|  | ||
| <imageEditor:SfImageEditor x:Name="imageEditor" | ||
|          | ||
| Source="image.png" | ||
| AnnotationsDeserialized="OnAnnotationsDeserialized"/> | ||
|  | ||
| {% endhighlight %} | ||
|  | ||
| {% highlight C# tabtitle="MainPage.xaml.cs" %} | ||
|  | ||
| private void OnAnnotationsDeserialized(object? sender, EventArgs e) | ||
| { | ||
|  | ||
|          | ||
| // Add anything here, like dispaly alert to show event raised | ||
|          | ||
| } | ||
|  | ||
| {% endhighlight %} | ||
|  | ||
| {% endtabs %} | ||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename to
Annotations deserialized eventand move this event to aboveannotation-selected-eventhttps://github.com/syncfusion-content/maui-docs/blob/b02e659e29e1f9f59f10ca5fc8e709cc571ed8c1/MAUI/ImageEditor/events.md#annotation-selected-event
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed sir.