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