This is a migrated thread and some comments may be shown as answers.

StartMenu events?

1 Answer 102 Views
RibbonBar
This is a migrated thread and some comments may be shown as answers.
George C.
Top achievements
Rank 2
Iron
Veteran
George C. asked on 31 Mar 2020, 04:50 PM

Greetings,

Is there any StartMenu event such as clicking event to control?

As it isn't considered a ribbonbar's tab, it can not be controlled using tab events.

 

1 Answer, 1 is accepted

Sort by
0
Accepted
Dess | Tech Support Engineer, Principal
Telerik team
answered on 01 Apr 2020, 05:01 AM

Hello, George,

According to the provided brief information, I suppose that you are trying to detect clicking the application menu button:

The RibbonBarElement.ApplicationButtonElement property gives you access to the button element. You can subscribe to its Click event.

            this.radRibbonBar1.RibbonBarElement.ApplicationButtonElement.Click+=ApplicationButtonElement_Click;

        private void ApplicationButtonElement_Click(object sender, EventArgs e)
        {
            Console.WriteLine("click");
        }

I hope this information helps. If you need any further assistance please don't hesitate to contact me. 

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
Tags
RibbonBar
Asked by
George C.
Top achievements
Rank 2
Iron
Veteran
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or