21 references to _children
Microsoft.Maui.Controls (21)
Layout\Layout.cs (21)
45
IList IBindableLayout.Children =>
_children
;
50
public int Count =>
_children
.Count;
55
public bool IsReadOnly => ((ICollection<IView>)
_children
).IsReadOnly;
59
get =>
_children
[index];
62
var old =
_children
[index];
69
_children
.RemoveAt(index);
75
_children
.Insert(index, value);
138
public IEnumerator<IView> GetEnumerator() =>
_children
.GetEnumerator();
140
IEnumerator IEnumerable.GetEnumerator() =>
_children
.GetEnumerator();
158
var index =
_children
.Count;
159
_children
.Add(child);
174
for (int i =
_children
.Count - 1; i >= 0; i--)
176
var child =
_children
[i];
177
_children
.RemoveAt(i);
193
return
_children
.Contains(item);
203
_children
.CopyTo(array, arrayIndex);
213
return
_children
.IndexOf(item);
228
_children
.Insert(index, child);
250
var index =
_children
.IndexOf(child);
273
var child =
_children
[index];
275
_children
.RemoveAt(index);