14 references to PropertyTabs
System.Windows.Forms.Tests (10)
System\Windows\Forms\PropertyGridTests.cs (10)
133Assert.NotEmpty(control.PropertyTabs); 134Assert.NotSame(control.PropertyTabs, control.PropertyTabs); 2367control.PropertyTabs.RemoveTabType(typeof(PropertiesTab)); 2368control.PropertyTabs.AddTabType(typeof(ReplacementPropertyTab), PropertyTabScope.Static); 2381Assert.Single(grid.PropertyTabs); 2383grid.PropertyTabs.AddTabType(typeof(TestPropertyTab)); 2384Assert.Equal(2, grid.PropertyTabs.Count); 2386grid.PropertyTabs.RemoveTabType(typeof(TestPropertyTab)); 2387Assert.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;