Hello,
According to this thread (see Konstantina's answer), pressing the "Escape" key with the Confirm dialog opened should return false.
But the following sample returns true:
Is this the expected result? I would think escape would return false.
Thanks,
Simon
According to this thread (see Konstantina's answer), pressing the "Escape" key with the Confirm dialog opened should return false.
But the following sample returns true:
bool
? dialogResult =
null
;
Telerik.Windows.Controls.RadWindow.Confirm(
new
Telerik.Windows.Controls.DialogParameters()
{
Closed = (w, e) =>
{
dialogResult = e.DialogResult;
}
});
Is this the expected result? I would think escape would return false.
Thanks,
Simon