I've got an app build mostly for the 2.2 API and targeting Silverlight 4 (or 5, it doesn't seem to affect my problem below) that uses the Editor class.
I have an event handler hanging off the Editor EditCompleted event. I examine the EditEventArgs.Action property and branch on whether it is a 'save' or an 'edit' (Action != Save).
If I change my project from referencing the 2.2 libraries to the 3.1 libraries (specifically Client, Client.Bing, and Client.Toolkit), and make no other changes, I get the following problem:
I am finding that my Editor.EditCompleted event handler never gets called unless the Action is Save. Also, after clicking my Save button, bound to the Editor.Save property, my button stays enabled, which means there is something haywire with that property too.
I realize this might be vague, I just want to ask first if it rings any kind of bell before I dig further...
Any bells?