Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1040
Prevent minimize ribbon tab
posted

Hi~

I want prevent minimize a ribbon tab when I press ctrl+f1 keyboard key.

Is there a way to disable this functionality?

 

I used Infragistics2.v11.2 .

Parents
  • 53790
    Verified Answer
    posted

    Hello Min,

     

    Maybe one possible solution could be if you handle PropertyChanged event. For example:

      private void ultraToolbarsManager1_PropertyChanged(object sender, Infragistics.Win.PropertyChangedEventArgs e)

            {

                if (e.ChangeInfo.Trigger.PropId.ToString() == "IsMinimized")

                {

                    ultraToolbarsManager1.Ribbon.IsMinimized = false;

                }

            }

     Let me know if you have any questions.

    Regards

Reply Children