Hi All,
I am using a wpf TabControl, in which I have several TabItems and I added the Display Text property to the TabItem with mnemonics. But In a TabItem am having WebBrowser Control in the TabContent.
The problem is, while pressing a key in the webbrowser's page textbox, it triggers the accelerator key and navigating to the tabitem. For Example, See the code below...
<TabControl
<tabItem Header=_Veritas></TabItem>
<tabItem Header=_Zeus></TabItem>
<tabItem Header=_Sparta></TabItem>
</TabControl>
In Sparta TabItem I have a webbrowser control and lets say I have a google search page in it... While am pressing the key V or Z its navigating to the tab Veritas or Zeus respectively with out pressing Alt Key. So I could not able to type in the google search textbox effectively.
How can I restrict this? Suggestions appreciated.