I was wondering how I can stop the user from editing the text in the UltraNavigationBar. That is, I only want dropdowns for navigation. I have only a few items in my location structure and typing does not seem to be convenient here.
Hi Mehdi,The EnteringEditMode event occurs before an edit mode session begins and the event can be canceled to prevent the edit mode session from occurring.
private void ultraNavigationBar1_EnteringEditMode(object sender, Infragistics.Win.Misc.UltraWinNavigationBar.CancelableEditModeEventArgs e){e.Cancel = true;}
Thanks,Josheela
Thanks Josheela, really appreciate it. I was looking for a property for this, but who knew the answer is somewhere else!