8 instantiations of RowDefinitionCollection
Microsoft.Maui.Controls (7)
Internals\ProfilePage.cs (1)
122 RowDefinitions = new RowDefinitionCollection {
Layout\AndExpandLayoutManager.cs (2)
56 RowDefinitions = new RowDefinitionCollection(), 92 RowDefinitions = new RowDefinitionCollection { new RowDefinition { Height = GridLength.Star } },
Layout\Grid.cs (1)
29 var rowDef = new RowDefinitionCollection();
LegacyLayouts\Grid.cs (1)
63 var rowDef = new RowDefinitionCollection();
RadioButton\RadioButton.cs (1)
473 RowDefinitions = new RowDefinitionCollection {
RowDefinitionCollectionTypeConverter.cs (1)
31 return new RowDefinitionCollection(definitions);
Microsoft.Maui.Controls.Foldable (1)
TwoPaneView.cs (1)
241 RowDefinitions = new RowDefinitionCollection() { new RowDefinition(), new RowDefinition(), new RowDefinition() };
17 references to RowDefinitionCollection
Microsoft.Maui.Controls (16)
Layout\Grid.cs (7)
26 typeof(RowDefinitionCollection), typeof(Grid), null, validateValue: (bindable, value) => value != null, 29 var rowDef = new RowDefinitionCollection(); 129 public RowDefinitionCollection RowDefinitions 131 get { return (RowDefinitionCollection)GetValue(RowDefinitionsProperty); } 305 else if (oldValue is RowDefinitionCollection oldRowDefs) 314 else if (newValue is RowDefinitionCollection newRowDefs) 361 RowDefinitionCollection rowDefs = RowDefinitions;
LegacyLayouts\Grid.cs (7)
53 public static readonly BindableProperty RowDefinitionsProperty = BindableProperty.Create(nameof(RowDefinitions), typeof(RowDefinitionCollection), typeof(Grid), null, 57 ((RowDefinitionCollection)oldvalue).ItemSizeChanged -= ((Grid)bindable).OnDefinitionChanged; 59 ((RowDefinitionCollection)newvalue).ItemSizeChanged += ((Grid)bindable).OnDefinitionChanged; 63 var rowDef = new RowDefinitionCollection(); 104 public RowDefinitionCollection RowDefinitions 106 get { return (RowDefinitionCollection)GetValue(RowDefinitionsProperty); } 272 RowDefinitionCollection rowDefs = RowDefinitions;
RowDefinitionCollectionTypeConverter.cs (2)
34 throw new InvalidOperationException(string.Format("Cannot convert \"{0}\" into {1}", strValue, typeof(RowDefinitionCollection))); 39 if (value is not RowDefinitionCollection rdc)
Microsoft.Maui.Controls.Build.Tasks (1)
CompiledConverters\RowDefinitionCollectionTypeConverter.cs (1)
43 throw new BuildException(BuildExceptionCode.Conversion, node, null, value, typeof(RowDefinitionCollection));