You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Commit b3276e3 inverts the logic of the Cancelling event's CancelEventArgs.Cancel property. Cancel = true now behaves as documented for System.ComponentModel.CancelEventArgs: it cancels the Cancelling operation which results in ignoring the user's cancel action (pressing the button). This is a breaking change to existing code handling the Cancelling event starting with V2.2.8. What makes it worse is the fact that the Cancel property is still initialized with true which makes the Cancel button being ignored.
As a fix the CancelEventArgs.Cancel property should be initialized with false so that by default the Cancel button closes the wizard.
A workaround is handling the Cancelling event and resetting the Cancel property
Commit b3276e3 inverts the logic of the
Cancelling
event'sCancelEventArgs.Cancel
property.Cancel = true
now behaves as documented forSystem.ComponentModel.CancelEventArgs
: it cancels the Cancelling operation which results in ignoring the user's cancel action (pressing the button). This is a breaking change to existing code handling the Cancelling event starting with V2.2.8. What makes it worse is the fact that theCancel
property is still initialized withtrue
which makes the Cancel button being ignored.As a fix the
CancelEventArgs.Cancel
property should be initialized withfalse
so that by default the Cancel button closes the wizard.A workaround is handling the
Cancelling
event and resetting theCancel
propertyor revert to V2.2.7.
The text was updated successfully, but these errors were encountered: