10 references to Height
Microsoft.Maui.Controls (10)
Cells\Cell.cs (6)
119 OnPropertyChanging(nameof(Height)); 122 OnPropertyChanged(nameof(Height)); 141 return table.HasUnevenRows && Height > 0 ? Height : table.RowHeight; 145 return list.HasUnevenRows && Height > 0 ? Height : list.RowHeight;
Compatibility\Handlers\ListView\iOS\ListViewRenderer.cs (2)
847 if (firstCell?.Height > 0 && !isGroupingEnabled) 915 if (_list.TryGetTarget(out var list) && list.RowHeight == -1 && cell.Height == -1 && cell is ViewCell)
Compatibility\Handlers\TableView\iOS\TableViewModelRenderer.cs (2)
68 return result == null ? UITableView.AutomaticDimension : (nfloat)result.Height; 188 var h = cell.Height;