Hi,
I am currently evaluating Infragistics for a customer. The customer wants to apply Office 2007 user experience to his software with one restriction. The first tab on the ribbon should not show the ribbon tab client area when selected.
To be more precisely. What I need is to close the drop down when the tab is selected. Setting IsMinimized to true does not do this, what I expected. I can find a method to open the drop down, but not to close it.
Any reply is welcome!
Kind regards,
Michael
For those who try to do something similar:
- handle BeforeTabItemSelected event and cancel the event (e.Cancel = true) for the tab which should not expan, set IsMinimized of the ribbon to true and SelectedTab to null
This should work.