Click here to Skip to main content
15,897,519 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i have a radRibbonBar in radRibbonBar property we have ShowHelpButton=True
so now i want understand when the user is click on the help ( ? ) button!!!! it is like picture in the radRibbonBar and i can not find the click event.
thanks
Posted

1 solution

Unfortunately after 2 day search i can not find any thing but
fortunately today i can solve the problem with myself with this code

C#
private void radRibbonBar1_Click(object sender, EventArgs e)
       {
           if (radRibbonBar1.RibbonBarElement.HelpButton.IsMouseDown)
           {
               MessageBox.Show("the help button is clik");
           }


       }


and if you want to active your help by pressing F1 you should go to the radRibbonBar event on the

C#
private void radRibbonBar1_HelpRequested(object sender, HelpEventArgs hlpevent)
        {
            MessageBox.Show("this is help");
        }


it activate by pressing F1 for help
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900