Hello,
We have an application where we would like to disable selecting a different tab at certain points during the application. I know you can hide the tabs by setting the tabstyle to wizard, but i would like them to just be disabled, not hidden. Thanks for your time
-Chris
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.
If you want the end-user to not be able to select certain tabs you could hook to the 'TabSelecting' event and cancel it:
private void ultraTabbedMdiManager1_TabSelecting(object sender, Infragistics.Win.UltraWinTabbedMdi.CancelableMdiTabEventArgs e) { e.Cancel = true; }
Please feel free to let me know if I misunderstood you or if you have any other questions.