12 references to PropertyTabs
System.Windows.Forms.Tests (8)
System\Windows\Forms\PropertyGridTests.cs (8)
131
Assert.NotEmpty(control.
PropertyTabs
);
132
Assert.NotSame(control.
PropertyTabs
, control.
PropertyTabs
);
2365
Assert.Single(grid.
PropertyTabs
);
2367
grid.
PropertyTabs
.AddTabType(typeof(TestPropertyTab));
2368
Assert.Equal(2, grid.
PropertyTabs
.Count);
2370
grid.
PropertyTabs
.RemoveTabType(typeof(TestPropertyTab));
2371
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
;