Hi,
I have added one button in QAT(Quick Access Toolbar). I call it as Open Recent File. on click of this button I want to open File Menu tab which will show the Recent Tool selected which includes list in backstage View. I am using C# .NET and infragistics 2010.3
I have tried a lot but not getting the desired output.
I am new to infragistics.Any help will be appreciated.
Thanks in advance. :)
Hello.
The ToolbarsManager has a ToolClick event which is where you can respond to tool clicks. You simply check e.Tool.Key to find out which tool was clicked. Here is an example in the help of how to use this event:
http://help.infragistics.com/NetAdvantage/WinForms/2010.3/CLR2.0/?page=Infragistics2.Win.UltraWinToolbars.v10.3~Infragistics.Win.UltraWinToolbars.UltraToolbarsManager~ToolClick_EV.html
You mentioned that you want to open a file menu tab when you click a specific button. Is this file menu tab a menu item or is it another ribbon tab? Each ribbon hab has a BringToView() method which you can call to bring that tab into view.
Each Ribbon tab can have multiple RibbonGroups and each RibbonGroup also has a BringToView()method. I am not entirely clear on what you want to do when that button is clicked, but handling the ToolClick event is the first thing to do. Could you provide some more details on what exactly you are looking to do?