Hello Dimitar,
Unfortunately, I haven't resolved my problem by your demo. I wrote a small demo.
In my demo, a message box will be displayed when the help button is clicked.
I used two different handlers to fire the event. But only one worked. Please check it out.
Can you tell me why this.HelpButtonClicked can not be fired ?
I can't upload the .rar file. You can download by this dropbox link:
https://www.dropbox.com/s/2uwo3unfsxbjb4o/TelerikHelpButton.rar?dl=0
using
System;
using
System.ComponentModel;
namespace
TelerikHelpButton
{
public
partial
class
RadRibbonForm1 : Telerik.WinControls.UI.RadRibbonForm
{
public
RadRibbonForm1()
{
InitializeComponent();
}
private
void
HelpButton_click(
object
sender, CancelEventArgs e)
{
Telerik.WinControls.RadMessageBox.Show(
"Help Button Clicked"
);
}
private
void
RadHelpButton_click(
object
sender, EventArgs e)
{
Telerik.WinControls.RadMessageBox.Show(
"Rad Help Button Clicked"
);
}
private
void
RadRibbonForm1_Load(
object
sender, EventArgs e)
{
this
.HelpButtonClicked +=
new
CancelEventHandler(
this
.HelpButton_click);
this
.radRibbonBar1.HelpButton.Click +=
new
EventHandler(
this
.RadHelpButton_click);
}
}
}
Thank you by advance.