You can use the "real" method, as suggested by Simon D., or do this:
EventHandler handler = null;
handler = (s,e) => {
Application.Current.Deactivated -= handler;
ChangeAppearance();
};
Application.Current.Deactivated += handler;
Since this is somewhat ugly and defeats the purpose of using lambda for succin, I will probably go over with refactoring to the method. But it’s good to know what else works.
: , -, handler , , , , .