7 references to HasUnevenRows
Microsoft.Maui.Controls (7)
Cells\Cell.cs (2)
141 return table.HasUnevenRows && Height > 0 ? Height : table.RowHeight; 166 if ((Parent as ListView)?.HasUnevenRows == true || (Parent as TableView)?.HasUnevenRows == true)
Compatibility\Handlers\TableView\iOS\TableViewRenderer.cs (3)
136 Control.Source = modeledView.HasUnevenRows ? new UnEvenTableViewModelRenderer(modeledView) : new TableViewModelRenderer(modeledView); 148 if (Element.HasUnevenRows && rowHeight == -1) 159 if (Element.HasUnevenRows && rowHeight == -1)
TableView\TableView.cs (2)
21 /// <summary>Bindable property for <see cref="HasUnevenRows"/>.</summary> 22 public static readonly BindableProperty HasUnevenRowsProperty = BindableProperty.Create(nameof(HasUnevenRows), typeof(bool), typeof(TableView), false);