Reputation: 13739
Is there a way to disable TabIndex for controls in a Form (C# winForms) that never need focus?
Upvotes: 31
Views: 28908
Reputation: 106
private void Form1_Load(object sender, EventArgs e)
{
button1.TabStop = false;
}
Upvotes: 5