Hi,
We are using WinForms RAD Controls (Q1 2012). We noticed strange behavior when navigating between message box buttons with keyboard arrow keys. When message box shown, YES button has focus. On left arrow key press both buttons lose focus, additional Left Arrow press set focus to NO button. The same behavior in opposite direction. Tab key navigation behaves as expected. It seems that there is some UI element, receiving focus in tab order between YES and NO buttons.
It appears that this is very annoying behavior for our end users.
Any idea will be appreciated
Following code used to show message box:
DialogResult result = RadMessageBox.Show(
null
,
"text"
,
"title"
,
MessageBoxButtons.YesNo, RadMessageIcon.None, MessageBoxDefaultButton.Button1, RightToLeft.Yes);
Regards,
Leon