Hello,
does anybody know how to make a TextboxTool on an UltraToolbar respond to the RETURN key ?
Thanks ,
Pit
Hello Georgi,
it is what I needed indeed. I can make it work with e.KeyValue == 13 .
(The match between e.keycode or e.keydata and System.Windows.Forms.Keys.Return doesn't seem to work though)
Thanks for helping me out !
Hi,Maybe one possible way to achieve this behavior is to use the event below:
private void ultraToolbarsManager1_ToolKeyDown(object sender, Infragistics.Win.UltraWinToolbars.ToolKeyEventArgs e) { if (e.KeyCode == Keys.Return) { // Include your code } }