1 instantiation of ScrollView
Microsoft.Maui.Controls (1)
Internals\ProfilePage.cs (1)
113 var scrollView = new ScrollView();
36 references to ScrollView
Microsoft.Maui.Controls (36)
Hosting\AppHostBuilderExtensions.cs (2)
80 handlersCollection.AddHandler<ScrollView, ScrollViewHandler>(); 264 ScrollView.RemapForControls();
Internals\ProfilePage.cs (1)
113 var scrollView = new ScrollView();
PlatformConfiguration\iOSSpecific\ScrollView.cs (4)
4 using FormsElement = Maui.Controls.ScrollView; 25 public static bool ShouldDelayContentTouches(this IPlatformElementConfiguration<iOS, FormsElement> config) 31 public static IPlatformElementConfiguration<iOS, FormsElement> SetShouldDelayContentTouches(this IPlatformElementConfiguration<iOS, FormsElement> config, bool value)
PlatformConfiguration\TizenSpecific\ScrollView.cs (9)
4 using FormsElement = Maui.Controls.ScrollView; 9 public static readonly BindableProperty VerticalScrollStepProperty = BindableProperty.Create("VerticalScrollStep", typeof(int), typeof(FormsElement), -1, 16 public static readonly BindableProperty HorizontalScrollStepProperty = BindableProperty.Create("HorizontalScrollStep", typeof(int), typeof(FormsElement), -1, 32 public static int GetVerticalScrollStep(this IPlatformElementConfiguration<Tizen, FormsElement> config) 37 public static IPlatformElementConfiguration<Tizen, FormsElement> SetVerticalScrollStep(this IPlatformElementConfiguration<Tizen, FormsElement> config, int scrollStep) 53 public static int GetHorizontalScrollStep(this IPlatformElementConfiguration<Tizen, FormsElement> config) 58 public static IPlatformElementConfiguration<Tizen, FormsElement> SetHorizontalScrollStep(this IPlatformElementConfiguration<Tizen, FormsElement> config, int scrollStep)
Properties\AssemblyInfo.cs (6)
153[assembly: StyleProperty("-maui-orientation", typeof(ScrollView), nameof(ScrollView.OrientationProperty))] 154[assembly: StyleProperty("-maui-horizontal-scroll-bar-visibility", typeof(ScrollView), nameof(ScrollView.HorizontalScrollBarVisibilityProperty))] 155[assembly: StyleProperty("-maui-vertical-scroll-bar-visibility", typeof(ScrollView), nameof(ScrollView.VerticalScrollBarVisibilityProperty))]
ScrollView\ScrollView.cs (11)
17 public partial class ScrollView : Compatibility.Layout, IScrollViewController, IElementConfiguration<ScrollView>, IFlowDirectionController, IScrollView, IContentView 118 public static readonly BindableProperty OrientationProperty = BindableProperty.Create(nameof(Orientation), typeof(ScrollOrientation), typeof(ScrollView), ScrollOrientation.Vertical); 120 static readonly BindablePropertyKey ScrollXPropertyKey = BindableProperty.CreateReadOnly(nameof(ScrollX), typeof(double), typeof(ScrollView), 0d); 125 static readonly BindablePropertyKey ScrollYPropertyKey = BindableProperty.CreateReadOnly(nameof(ScrollY), typeof(double), typeof(ScrollView), 0d); 130 static readonly BindablePropertyKey ContentSizePropertyKey = BindableProperty.CreateReadOnly(nameof(ContentSize), typeof(Size), typeof(ScrollView), default(Size)); 135 readonly Lazy<PlatformConfigurationRegistry<ScrollView>> _platformConfigurationRegistry; 138 public static readonly BindableProperty HorizontalScrollBarVisibilityProperty = BindableProperty.Create(nameof(HorizontalScrollBarVisibility), typeof(ScrollBarVisibility), typeof(ScrollView), ScrollBarVisibility.Default); 141 public static readonly BindableProperty VerticalScrollBarVisibilityProperty = BindableProperty.Create(nameof(VerticalScrollBarVisibility), typeof(ScrollBarVisibility), typeof(ScrollView), ScrollBarVisibility.Default); 236 _platformConfigurationRegistry = new Lazy<PlatformConfigurationRegistry<ScrollView>>(() => new PlatformConfigurationRegistry<ScrollView>(this)); 242 public IPlatformElementConfiguration<T, ScrollView> On<T>() where T : IConfigPlatform
SwipeView\SwipeView.cs (3)
290 if (_scrollParent is ScrollView scrollView) 313 _scrollParent = this.FindParentOfType<ScrollView>(); 315 if (_scrollParent is ScrollView scrollView)