1 write to _tableModel
Microsoft.Maui.Controls (1)
TableView\TableView.cs (1)
43
Model =
_tableModel
= new TableSectionModel(this, root);
10 references to _tableModel
Microsoft.Maui.Controls (10)
TableView\TableView.cs (10)
72
get { return
_tableModel
.Root; }
75
if (
_tableModel
.Root != null)
77
_tableModel
.Root.SectionCollectionChanged -= OnSectionCollectionChanged;
78
_tableModel
.Root.PropertyChanged -= OnTableModelRootPropertyChanged;
79
VisualDiagnostics.OnChildRemoved(this,
_tableModel
.Root, 0);
81
_tableModel
.Root = value ?? new TableRoot();
82
VisualDiagnostics.OnChildAdded(this,
_tableModel
.Root);
83
SetInheritedBindingContext(
_tableModel
.Root, BindingContext);
86
_tableModel
.Root.SectionCollectionChanged += OnSectionCollectionChanged;
87
_tableModel
.Root.PropertyChanged += OnTableModelRootPropertyChanged;