I am looking to add some application logic when Ribbon Minimized state is changed. I could not find any event that is raised when Ribbon Minimized state is changed i.e when user clicks on 'Minimized Ribbon'.
I don't think there is an event specific for this change, but you can always hook into the PropertyChanged event of the toolbars manager. In your event handler, call FindPropId on the ChangeInfo of the event args and pass in Infragistics.Win.UltraWinToolbars.PropertyIds.IsMinimized. If the PropChangeInfo returned is not null and its Source property is the Ribbon, its minimization has changed.
Thanks. I was using the following
if ((Infragistics.Win.UltraWinToolbars.PropertyIds)e.ChangeInfo.PropId == Infragistics.Win.UltraWinToolbars.PropertyIds.Ribbon)
And as you surely know this was getting suceeding even when a tool was clicked. Your solution make sure its only handles the right scenario.