14 references to PropertyTabs
System.Windows.Forms.Tests (10)
System\Windows\Forms\PropertyGridTests.cs (10)
133
Assert.NotEmpty(control.
PropertyTabs
);
134
Assert.NotSame(control.
PropertyTabs
, control.
PropertyTabs
);
2367
control.
PropertyTabs
.RemoveTabType(typeof(PropertiesTab));
2368
control.
PropertyTabs
.AddTabType(typeof(ReplacementPropertyTab), PropertyTabScope.Static);
2381
Assert.Single(grid.
PropertyTabs
);
2383
grid.
PropertyTabs
.AddTabType(typeof(TestPropertyTab));
2384
Assert.Equal(2, grid.
PropertyTabs
.Count);
2386
grid.
PropertyTabs
.RemoveTabType(typeof(TestPropertyTab));
2387
Assert.Single(grid.
PropertyTabs
);
System.Windows.Forms.UI.IntegrationTests (4)
PropertyGridTests.cs (4)
461
_propertyGrid.
PropertyTabs
.Should().NotBeNull();
463
PropertyTabCollection propertyTabCollection = _propertyGrid.
PropertyTabs
;
471
PropertyTabCollection initialTabs = _propertyGrid.
PropertyTabs
;
475
PropertyTabCollection refreshedTabs = _propertyGrid.
PropertyTabs
;