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