Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IsTabStop="False" has no effect on my WPF app

Tags:

c#

wpf

tabstop

I'm having a really hard time with something that should be trivial. I just want to remove a few buttons from the tab order on a UserControl. I've tried adding IsTabStop="False" and KeyboardNavigation.IsTabStop="False" attributes to their xaml declarations, as well as setting myButton.IsTabStop = false; in the Loaded event handler for the UserControl. None of these additions had any effect, I could still tab to the controls I did this for.

Setting the TabIndex in the xaml works fine. The UserControl is being displayed in a WPFElementHost if that might make a difference. The other thought I had was that I might need to specify the TabIndex for all the other controls, but I haven't read that anywhere and I'd prefer to not state that explicitly if possible. Does anyone have a guess as to what might be going wrong?

like image 362
John Avatar asked Feb 02 '23 21:02

John


2 Answers

Try setting KeyboardNavigation.TabNavigation ="None" in the parent control.

like image 82
DanT Avatar answered Feb 06 '23 09:02

DanT


You need also employ KeyboardNavigation.TabNavigation ="Continue" for the parent controls, and

"Focusable=False" 
like image 37
patrick Avatar answered Feb 06 '23 11:02

patrick