6 references to HasUnevenRows
Microsoft.Maui.Controls (6)
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)
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
)