10 references to HasUnevenRows
Microsoft.Maui.Controls (10)
Cells\Cell.cs (2)
145
return list.
HasUnevenRows
&& Height > 0 ? Height : list.RowHeight;
166
if ((Parent as ListView)?.
HasUnevenRows
== true || (Parent as TableView)?.HasUnevenRows == true)
Compatibility\Handlers\ListView\iOS\ListViewRenderer.cs (4)
258
Control.Source = _dataSource = e.NewElement.
HasUnevenRows
? new UnevenListViewDataSource(e.NewElement, _tableViewController) : new ListViewDataSource(e.NewElement, _tableViewController);
288
Control.Source = _dataSource = Element.
HasUnevenRows
? new UnevenListViewDataSource(_dataSource) : new ListViewDataSource(_dataSource);
713
if (Element.
HasUnevenRows
&& rowHeight == -1)
1487
if (!list.
HasUnevenRows
|| list.RowHeight != -1)
ListView\ListView.cs (4)
57
/// <summary>Bindable property for <see cref="
HasUnevenRows
"/>.</summary>
58
public static readonly BindableProperty HasUnevenRowsProperty = BindableProperty.Create(nameof(
HasUnevenRows
), typeof(bool), typeof(ListView), false);
431
if (list != null &&
HasUnevenRows
== false && RowHeight > 0 && !IsGroupingEnabled)
448
if (content is ViewCell viewCell && viewCell.View != null &&
HasUnevenRows
)