1 override of GetFirstChildControlInTabOrder
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
3865internal override Control? GetFirstChildControlInTabOrder(bool forward) => null;
4 references to GetFirstChildControlInTabOrder
System.Windows.Forms (2)
System\Windows\Forms\Control.cs (2)
5596Control? found = ctl.GetFirstChildControlInTabOrder(forward: true); 5751Control? found = ctl.GetFirstChildControlInTabOrder(forward: false);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ControlTests.Internals.cs (2)
373Assert.Equal(first, control.GetFirstChildControlInTabOrder(true)); 401Assert.Equal(third, control.GetFirstChildControlInTabOrder(false));