Hi Sir,
I want to set a ShortCutKey In Ribbon Control.. How Can i Create a shortcutkey????
Hello Jayamanickam,
Thank you for posting in our forum.
If I understand you correctly you need to set a shortcut key to activate a tool in UltraToolbarsmanager’s Ribbon. Please note all the tools you have in the ribbon are actually instances of the tools you have in Tools collection of UltraToolbarsManager. So in order to set a shortcut key you need to set it to the Shortcut property of the tool’s SharedProps property. You can use code like this:
this.ultraToolbarsManager1.Tools["ButtonTool1"].SharedProps.Shortcut = Shortcut.CtrlShift1;
More about Shortcut property you may find by following the next link http://help.infragistics.com/Help/Doc/WinForms/2014.2/CLR4.0/HTML/Infragistics4.Win.UltraWinToolbars.v14.2~Infragistics.Win.UltraWinToolbars.SharedProps~Shortcut.html
Attached I am sending you a small sample solution implementing this approach. Please check my sample and let me know if this is what you are looking for or if I am missing something.
Thank you so much sir ... It will be working.
Hi,
Thank you for contacting Infragistics Developer Support.
I am glad that you have resolved your issue. Let me know if you have any additional questions.