1 write to _content
Microsoft.Maui.Controls (1)
ScrollView\ScrollView.cs (1)
162
_content
= value;
8 references to _content
Microsoft.Maui.Controls (8)
ScrollView\ScrollView.cs (8)
150
get { return
_content
; }
153
if (
_content
== value)
157
if (
_content
!= null)
159
_content
.SizeChanged -= ContentSizeChanged;
160
InternalChildren.Remove(
_content
);
163
if (
_content
!= null)
165
InternalChildren.Add(
_content
);
166
_content
.SizeChanged += ContentSizeChanged;