13 references to RowHeight
Microsoft.Maui.Controls (9)
Cells\Cell.cs (1)
145
return list.HasUnevenRows && Height > 0 ? Height : list.
RowHeight
;
Compatibility\Handlers\ListView\iOS\ListViewRenderer.cs (4)
711
var rowHeight = Element.
RowHeight
;
819
if (list.
RowHeight
!= -1)
915
if (_list.TryGetTarget(out var list) && list.
RowHeight
== -1 && cell.Height == -1 && cell is ViewCell)
1487
if (!list.HasUnevenRows || list.
RowHeight
!= -1)
ListView\ListView.cs (4)
60
/// <summary>Bindable property for <see cref="
RowHeight
"/>.</summary>
61
public static readonly BindableProperty RowHeightProperty = BindableProperty.Create(nameof(
RowHeight
), typeof(int), typeof(ListView), -1);
431
if (list != null && HasUnevenRows == false &&
RowHeight
> 0 && !IsGroupingEnabled)
434
request = new Size(width, list.Count *
RowHeight
);
Microsoft.Maui.Controls.Compatibility (4)
iOS\Renderers\ListViewRenderer.cs (4)
737
var rowHeight = Element.
RowHeight
;
840
if (List.
RowHeight
!= -1)
934
if (List.
RowHeight
== -1 && cell.Height == -1 && cell is ViewCell)
1463
if (!List.HasUnevenRows || List.
RowHeight
!= -1)