12 references to PropertyTabs
System.Windows.Forms.Tests (8)
System\Windows\Forms\PropertyGridTests.cs (8)
133Assert.NotEmpty(control.PropertyTabs); 134Assert.NotSame(control.PropertyTabs, control.PropertyTabs); 2367Assert.Single(grid.PropertyTabs); 2369grid.PropertyTabs.AddTabType(typeof(TestPropertyTab)); 2370Assert.Equal(2, grid.PropertyTabs.Count); 2372grid.PropertyTabs.RemoveTabType(typeof(TestPropertyTab)); 2373Assert.Single(grid.PropertyTabs);
System.Windows.Forms.UI.IntegrationTests (4)
PropertyGridTests.cs (4)
461_propertyGrid.PropertyTabs.Should().NotBeNull(); 463PropertyTabCollection propertyTabCollection = _propertyGrid.PropertyTabs; 471PropertyTabCollection initialTabs = _propertyGrid.PropertyTabs; 475PropertyTabCollection refreshedTabs = _propertyGrid.PropertyTabs;