Hello,
I am using a base class to my Popup windows on a WPF application. Everything looks and works great beside one thing : I cant map an event handler that is on the base class to the xaml.
Ofcourse i can easily have the event on the implemented class, and use the method to call the base class, but i just wanted to know if there a way to have the code cleaner while implementing all my generic event handlers in one place and mapping the xamls to them.
Example code :
<CommandBinding Command="Save" Executed="Save_Executed" CanExecute="Save_CanExecute" />
And have Save_Executed
handler on the base class of 'MyClass.cs'.
Thanks, Oran