Implemented interface member:
property
ContentSize
Microsoft.Maui.IScrollView.ContentSize
3 writes to ContentSize
Microsoft.Maui.Controls (3)
ScrollView\ScrollView.cs (3)
176 ContentSize = Size.Zero; 184 ContentSize = new Size(frameSize.Width + margin.HorizontalThickness, 436 ContentSize = Size.Zero;
5 references to ContentSize
Microsoft.Maui.Controls (3)
ScrollView\ScrollView.cs (3)
127 static readonly BindablePropertyKey ContentSizePropertyKey = BindableProperty.CreateReadOnly(nameof(ContentSize), typeof(Size), typeof(ScrollView), default(Size)); 129 /// <summary>Bindable property for <see cref="ContentSize"/>.</summary> 437 return ContentSize;
Microsoft.Maui.Controls.Compatibility (2)
Tizen\Renderers\ScrollViewRenderer.cs (2)
97 Control.ContentContainer.Children[0].SizeWidth = Forms.ConvertToScaledPixel(Element.ContentSize.Width + Element.Padding.HorizontalThickness); 98 Control.ContentContainer.Children[0].SizeHeight = Forms.ConvertToScaledPixel(Element.ContentSize.Height + Element.Padding.VerticalThickness);