I'm getting an odd result in a Composite Event handler in a Prism app I am writing. I created the event handler and put in an exception statement to verify that the handler is being called:
public void OnDateSelected(DateTime selectedDate)
{
// Temporary code
throw new ApplicationException("Not implemented yet.");
}
I run the app and raise the event. The event handler is called, but the exception does not stop execution. It is written to the output window, and the app exits the handler, but execution continues. There isn't a try-catch block anywhere in sight, so why isn't the exception interrupting execution? Thanks.