2 instantiations of RowDefinitionCollection
PresentationFramework (2)
System\Windows\Controls\Grid.cs (1)
312if (_data.RowDefinitions == null) { _data.RowDefinitions = new RowDefinitionCollection(this); }
System\Windows\Controls\RowDefinitionCollectionConverter.cs (1)
48RowDefinitionCollection collection = new RowDefinitionCollection();
13 references to RowDefinitionCollection
PresentationFramework (13)
System\Windows\Controls\Grid.cs (5)
307public RowDefinitionCollection RowDefinitions 325throw new ArgumentException(SR.Format(SR.GridCollection_InOtherCollection, nameof(value), nameof(RowDefinitionCollection))); 3358internal RowDefinitionCollection RowDefinitions; // collection of row definitions (logical tree support) 3925_enumerator1 = new RowDefinitionCollection.Enumerator(grid.ExtData?.RowDefinitions); 3997private RowDefinitionCollection.Enumerator _enumerator1;
System\Windows\Controls\RowDefinition.cs (4)
511throw new ArgumentException(SR.Format(SR.GridCollection_InOtherCollection, nameof(Grid), nameof(RowDefinitionCollection))); 535throw new ArgumentException(SR.Format(SR.GridCollection_InOtherCollection, nameof(RowDefinitionCollection), nameof(Grid))); 790internal Enumerator(RowDefinitionCollection collection) 923private RowDefinitionCollection _collection; // the collection to be enumerated
System\Windows\Controls\RowDefinitionCollectionConverter.cs (1)
48RowDefinitionCollection collection = new RowDefinitionCollection();
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
6889typeof(System.Windows.Controls.RowDefinitionCollection), // type 6895SetDelegate = delegate(object target, object value) { ((System.Windows.Controls.Grid)target).RowDefinitions = (System.Windows.Controls.RowDefinitionCollection)value; },
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
13128typeof(System.Windows.Controls.RowDefinitionCollection),