File: Android\IScrollView.cs | Web Access |
Project: src\src\Compatibility\Core\src\Compatibility.csproj (Microsoft.Maui.Controls.Compatibility) |
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Android.App; using Android.Content; using Android.OS; using Android.Runtime; using Android.Views; using Android.Widget; namespace Microsoft.Maui.Controls.Compatibility.Platform.Android { internal interface IScrollView { bool ScrollBarsInitialized { get; set; } bool ScrollbarFadingEnabled { get; set; } void AwakenScrollBars(); } } |