Implemented interface member:
17 references to Count
System.Windows.Forms.Tests (15)
System\Windows\Forms\PropertyGrid.PropertyTabCollectionTests.cs (14)
35propertyTabCollection.Count.Should().Be(1); // PropertyGrid initially contains one PropertiesTab 58int initialCount = propertyTabCollection.Count; 66propertyTabCollection.Count.Should().Be(expectedCount); 67if (propertyTabCollection.Count > initialCount) 76int initialCount = _propertyTabCollection.Count; 79_propertyTabCollection.Count.Should().Be(initialCount + 1); 86int initialCount = _propertyTabCollection.Count; 89_propertyTabCollection.Count.Should().Be(initialCount + 1); 97int countAfterAdd = _propertyTabCollection.Count; 101_propertyTabCollection.Count.Should().Be(countAfterAdd - 1); 109int countAfterAdd = _propertyTabCollection.Count; 113_propertyTabCollection.Count.Should().BeLessThan(countAfterAdd); 120PropertyTab[] array = new PropertyTab[_propertyTabCollection.Count]; 140count.Should().Be(_propertyTabCollection.Count);
System\Windows\Forms\PropertyGridTests.cs (1)
2370Assert.Equal(2, grid.PropertyTabs.Count);
System.Windows.Forms.UI.IntegrationTests (2)
PropertyGridTests.cs (2)
472int initialTabCount = initialTabs.Count; 476int refreshedTabCount = refreshedTabs.Count;