15 references to TableView
Microsoft.Maui.Controls (15)
Cells\Cell.cs (3)
139
var
table = RealParent as
TableView
;
166
if ((Parent as ListView)?.HasUnevenRows == true || (Parent as
TableView
)?.HasUnevenRows == true)
Element\Element.cs (2)
32
/// <description> Cells are elements meant to be added to <see cref="ListView"/> or <see cref="
TableView
"/>.</description>
45
/// <description>The lower part of the diagram shows the Microsoft.Maui.Controls classes for universally-available controls, such as <see cref = "Button"/> and <see cref="
TableView
"/>.</description>
Internals\CellExtensions.cs (1)
43
return
TableView
.TableSectionModel.GetPath(cell);
TableView\TableView.cs (9)
16
public class TableView : View, ITableViewController, IElementConfiguration<
TableView
>, IVisualTreeElement
19
public static readonly BindableProperty RowHeightProperty = BindableProperty.Create(nameof(RowHeight), typeof(int), typeof(
TableView
), -1);
22
public static readonly BindableProperty HasUnevenRowsProperty = BindableProperty.Create(nameof(HasUnevenRows), typeof(bool), typeof(
TableView
), false);
24
readonly Lazy<PlatformConfigurationRegistry<
TableView
>> _platformConfigurationRegistry;
44
_platformConfigurationRegistry = new Lazy<PlatformConfigurationRegistry<
TableView
>>(() => new PlatformConfigurationRegistry<
TableView
>(this));
149
public IPlatformElementConfiguration<T,
TableView
> On<T>() where T : IConfigPlatform
177
readonly
TableView
_parent;
180
public TableSectionModel(
TableView
tableParent, TableRoot tableRoot)