Currently there's no way to let SfImageEditor fire an event when the image is modified. The only way is to check the IsImageEdited property but it would be really useful if we have an event for that. Subscribing to the PropertyChanged event doesn't work. The PropertyChanged event doesn't fire when the IsImageEditor property changes (as it should)
Why do we need this?
For example:
imageEditor.ImageEdited += (sender,args) =>
{
MyButton.Text = imageEditor.IsImageEdited ? "Save Changes" : "Back";
};