#641 – The Difference Between IsTabStop and Focusable
September 6, 2012 1 Comment
The Focusable property for a control indicates whether the control can receive focus, which means that the control can receive keyboard input after the user clicks on the control.
Focusable is normally set to true for controls that are designed to accept user input.
The IsTabStop property, on the other hand, indicates that a control is part of the set of controls that are visited when the user cycles focus using the Tab key.
By default, controls whose Focusable property is set to true will also have their IsTabStop property set to true. You can change this however. If you set IsTabStop to false, but leave Focusable set to true, the user can click on a control to give it focus, but can’t tab to the control.
Pingback: Dew Drop – September 6, 2012 (#1,395) | Alvin Ashcraft's Morning Dew