Use this code and click the save icon:
public RadForm1()
{
InitializeComponent();
this.radImageEditor1.ImageSaved+=radImageEditor1_ImageSaved;
this.radImageEditor1.OpenImage(@"..\..\London_01.jpg");
}
private void radImageEditor1_ImageSaved(object sender, EventArgs e)
{
RadMessageBox.Show("Saved!");
}
You will notice that the ImageSaved event is not fired.