I need the Ribbon never minimized and always show.
thanks.
Was this issue resolved in v9.2 and if so, how can I disable this context menu?
Any progress on FR12077?
I found a workaround for this, I capture the property changed event and if it's the minimize event, I put it back to false.
Here's my code:
Private Sub tbm1_PropertyChanged(sender As Object, e As Infragistics.Win.PropertyChangedEventArgs) Handles tbm1.PropertyChanged If Not IsNothing(e.ChangeInfo.Trigger) Then If e.ChangeInfo.Trigger.ToString = "Ribbon.IsMinimized" Then tbm1.Ribbon.IsMinimized = False End If End IfEnd Sub
Hello.
This feature has not yet been implemented and it is not scheduled to be included in 2011 at the moment. Please let me know if there is anything else that I can do for you.
Sincerely,CharlieSenior Developer Support EngineerMCTS
How do we find out if a feature has been added based on the feature request number? I'm interested to find out if FR12075 has been added. I also need to disable the 'double-click-to-hide' feature of the ribbon.
TIA, - Ken