You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<xref:Microsoft.Maui.Controls.TableView> is deprecated in .NET 10. For most scenarios, you should migrate to <xref:Microsoft.Maui.Controls.CollectionView>, which uses an <xref:Microsoft.Maui.Controls.ItemsView.ItemTemplate> to define item appearance rather than cells.
26
+
27
+
- TextCell/ImageCell/ViewCell → Define a DataTemplate for your item type
28
+
- SwitchCell/EntryCell → Compose those controls inside the item template
29
+
- Grouping → Use `IsGrouped="true"` with `GroupHeaderTemplate` / `GroupFooterTemplate`
-[Display grouped data in a CollectionView](~/user-interface/controls/collectionview/grouping.md)
95
+
96
+
::: moniker-end
97
+
21
98
While <xref:Microsoft.Maui.Controls.TableView> manages the appearance of the table, the appearance of each item in the table is defined by a <xref:Microsoft.Maui.Controls.Cell>. .NET MAUI includes five cell types that are used to display different combinations of data, and you can also define custom cells that display any content you want.
22
99
23
100
<xref:Microsoft.Maui.Controls.TableView> defines the following properties:
0 commit comments