15 строки
340 B
C#
15 строки
340 B
C#
using System;
|
|
|
|
namespace Xamarin.Forms
|
|
{
|
|
public interface IScrollViewController : ILayoutController
|
|
{
|
|
Point GetScrollPositionForElement(VisualElement item, ScrollToPosition position);
|
|
|
|
event EventHandler<ScrollToRequestedEventArgs> ScrollToRequested;
|
|
|
|
void SendScrollFinished();
|
|
|
|
void SetScrolledPosition(double x, double y);
|
|
}
|
|
} |