ScrollToAsync在Xamarin.Forms中不起作用

时间:2018-09-08 01:43:05

标签: c# scroll xamarin.forms

我有一个简单的屏幕示例,尝试实现ScrollToAsync函数。我根本无法滚动该功能。

我的XAML:

 <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
         xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
         x:Class="MyApp.ItemList">
<ContentPage.Content>
    <ScrollView x:Name="myScroll">
    <StackLayout>

        <Label Text="Welcome to Xamarin.Forms!" />
            <Label Text="Welcome to Xamarin.Forms!" />
            <Label Text="Welcome to Xamarin.Forms!" />
            <Label Text="Welcome to Xamarin.Forms!" />
              // Many labels to fill space here
            <Label Text="Welcome to Xamarin.Forms!" />
        </StackLayout>
    </ScrollView>
</ContentPage.Content>
</ContentPage>

C#是:

    [XamlCompilation(XamlCompilationOptions.Compile)]
public partial class ItemList : ContentPage
{
    public ItemList ()
    {
        InitializeComponent ();
        myScroll.ScrollToAsync(0, 100, false);
    }
}

我在做什么错?这一定是我需要做的简单事情。我已经尝试过将ScrollToAsync调用包装在一个异步方法中,因此可以在它之前使用“ await”,但这是行不通的。

2 个答案:

答案 0 :(得分:1)

那是因为尚未加载滚动条,因此最好尝试将此方法添加到您的代码中

protected override void OnAppearing()
    {
        base.OnAppearing();
        scLista.ScrollToAsync(0,100,false);
    }

答案 1 :(得分:0)

添加延迟会对您有所帮助, 我将其设置为计时器并对其工作正常。

public MainPage()
    {
        InitializeComponent();
        StarAnimate();
    }

   private void StarAnimate()
    {
        Device.StartTimer(TimeSpan.FromSeconds(1), () =>
        {

            myScroll.ScrollToAsync(LatestElment, ScrollToPosition.Center, true);
            return false; 
        });
    }

LatestElment:要滚动的元素。