What is the difference between toggling the keyboard focus in a WPF application via Tab and via Ctrl-Tab? Which (dependency) properties and overridable functions and which control types determine this behaviour?
In my App, it seems that I can toggle between all focusable items via Ctrl-Tab, but only a few selected via Tab. How can I specify which items can be reached via which method?
Some items (TextBox
or Combobox
) are grouped in a ListBox
. However, for some reason, the Tab key always puts the focus to some item outside the ListBox
; I would prefer if it stays inside. Unfortunately, I cannot present actual xaml-code here as the view is dynamically created.