9 writes to TabIndex
Accessibility_Core_App (1)
ToolStripContainer.cs (1)
15
toolStripContainer2.ContentPanel.
TabIndex
= 1;
System.Windows.Forms.Tests (8)
System\Windows\Forms\ToolStripContentPanelTests.cs (8)
1496
TabIndex
= value
1502
control.
TabIndex
= value;
1512
TabIndex
= 0
1524
control.
TabIndex
= 1;
1529
control.
TabIndex
= 1;
1534
control.
TabIndex
= 2;
1540
control.
TabIndex
= 1;
1549
Assert.Throws<ArgumentOutOfRangeException>("value", () => control.
TabIndex
= -1);
7 references to TabIndex
System.Windows.Forms.Tests (7)
System\Windows\Forms\ToolStripContentPanelTests.cs (7)
109
Assert.Equal(0, control.
TabIndex
);
1498
Assert.Equal(value, control.
TabIndex
);
1503
Assert.Equal(value, control.
TabIndex
);
1525
Assert.Equal(1, control.
TabIndex
);
1530
Assert.Equal(1, control.
TabIndex
);
1535
Assert.Equal(2, control.
TabIndex
);
1541
Assert.Equal(1, control.
TabIndex
);