31 writes to TabIndex
DesignSurface (6)
MainForm.Designer.cs (6)
104
this.tabPage1.
TabIndex
= 0;
114
this.tabPage2.
TabIndex
= 1;
124
this.tabPage3.
TabIndex
= 2;
134
this.tabPage4.
TabIndex
= 3;
144
this.tabPage5.
TabIndex
= 3;
154
this.tabPage6.
TabIndex
= 3;
PresentationUI (1)
MS\Internal\Documents\Application\DocumentPropertiesDialog.Designer.cs (1)
427
this._infoTab.
TabIndex
= 2;
System.Windows.Forms.Tests (8)
System\Windows\Forms\TabPageTests.cs (8)
2629
TabIndex
= value
2635
control.
TabIndex
= value;
2645
TabIndex
= 0
2657
control.
TabIndex
= 1;
2662
control.
TabIndex
= 1;
2667
control.
TabIndex
= 2;
2673
control.
TabIndex
= 1;
2682
Assert.Throws<ArgumentOutOfRangeException>("value", () => control.
TabIndex
= -1);
TestPassApp (12)
ContainerControls.Designer.cs (10)
436
this.tabPage9.
TabIndex
= 0;
458
this.tabPage10.
TabIndex
= 1;
482
this.tabPage11.
TabIndex
= 0;
504
this.tabPage12.
TabIndex
= 1;
600
this.tabPage1.
TabIndex
= 2;
612
this.tabPage2.
TabIndex
= 3;
666
this.tabPage3.
TabIndex
= 0;
688
this.tabPage4.
TabIndex
= 1;
772
this.tabPage5.
TabIndex
= 2;
784
this.tabPage6.
TabIndex
= 3;
ContainerControls2.Designer.cs (2)
376
this.tabPage7.
TabIndex
= 0;
387
this.tabPage8.
TabIndex
= 1;
WinFormsControlsTest (4)
MultipleControls.Designer.cs (2)
143
this.tabPage1.
TabIndex
= 0;
163
this.tabPage2.
TabIndex
= 1;
ScrollableControls.Designer.cs (2)
328
tabPage1.
TabIndex
= 0;
347
tabPage2.
TabIndex
= 1;
8 references to TabIndex
System.Windows.Forms.Tests (8)
System\Windows\Forms\TabPageTests.cs (8)
112
Assert.Equal(0, control.
TabIndex
);
221
Assert.Equal(0, control.
TabIndex
);
2631
Assert.Equal(value, control.
TabIndex
);
2636
Assert.Equal(value, control.
TabIndex
);
2658
Assert.Equal(1, control.
TabIndex
);
2663
Assert.Equal(1, control.
TabIndex
);
2668
Assert.Equal(2, control.
TabIndex
);
2674
Assert.Equal(1, control.
TabIndex
);