Hi,
I am interested in capturing when somebody clicks on the RadRibbonBackstageItem item to perform some action before It get opened or after it get closed. I tried wiring up the Click event but I didn't see it get fired at all.
I had no luck with Command as well. So, I am wondering what is the best way to achieve that?
The code behind for the method is:
Thanks,
I am interested in capturing when somebody clicks on the RadRibbonBackstageItem item to perform some action before It get opened or after it get closed. I tried wiring up the Click event but I didn't see it get fired at all.
I had no luck with Command as well. So, I am wondering what is the best way to achieve that?
<
telerik:RadRibbonBackstageItem
Header
=
"Recent"
Icon
=
"/Images/Recent.png"
Click
=
"OnRecentTabClicked"
/>
The code behind for the method is:
public
void
OnRecentTabClicked(
object
sender, RoutedEventArgs e)
{
RadRibbonBackstageItem item = sender
as
RadRibbonBackstageItem;
// do the rest....
}
Thanks,