[SOLVED] RibbonBar TabIndexChanged

Answered
0
0

Hi,

in RibbonBar the event TabIndexChanged don’t fire. How I can detect when click on a Tab of page?

best

Cristian

  • You must to post comments
Best Answer
0
0

TabIndexChanged is the event fired when the property TabIndex is changed and in the RibbonBar is hidden because it’s not relevant.

 

 /// <summary>
 /// This event is not relevant for this class.
 /// </summary>
 /// <exclude/>
 [Browsable(false)]
 [EditorBrowsable(EditorBrowsableState.Never)]
 public new event EventHandler TabIndexChanged

 

When SelectedPage property changes it fires SelectedPageChanged.

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.