In WPFapplication by default TabIndex = 2147483647 for any element.
Why it is 2147483647?
Why not any other number?
Am I missing something?
I’m just interested.
In WPF application by default TabIndex = 2147483647 for any element. Why it is
Share
This number is MaxInt, or 2^31 – 1 (see here)
As you cannot possibly choose a higher number for your own tab indices, this ensures that new controls never alter an existing tab order, if one has been manually specified.