ScrollView在Xamarin.UWP中无法触摸

时间:2017-04-30 16:10:53

标签: uiscrollview uwp xamarin.forms xamarin.windows

我正在尝试为包含ScrollView的ContentView设置AbosoluteLayout.TranslatedTo。在那,ScrollView不工作触摸,但它正在处理鼠标交互。 我在C#中添加了代码propertyView.TranslateTo(propertiesView.Width / 2,0,400,Easing.Linear);如果我没有使用AbsoluteLayout.TranslatedTo意味着ScrollView正在处理这两种交互。 如何解决问题?这是我的代码

 <AbsoluteLayout x:Name="absoluteLay" VerticalOptions="FillAndExpand"
                HorizontalOptions="FillAndExpand"
                AbsoluteLayout.LayoutBounds="0,500,500,500">
  <ContentView  x:Name="propertiesView" BackgroundColor="White"
                AbsoluteLayout.LayoutBounds="0,0,500,500" >

    <ScrollView x:Name="propertiesContent" Padding="20,5,20,0"
                Grid.Row="1" Grid.ColumnSpan="2" Orientation="Vertical" 
      AbsoluteLayout.LayoutBounds="1,1,1,1">
      <StackLayout>
        <Label Text="Label1" />
        <Label Text="Label2" />
        <Label Text="Label3" />
        <Label Text="Label4" />
        <Label Text="Label5" />
        <Label Text="Label6" />
        <Label Text="Label7" />
        <Label Text="Label8" />
        <Label Text="Label9" />
        <Label Text="Label10" />
        <Label Text="Label11" />
        <Label Text="Label12" />
        <Label Text="Label13" />
        <Label Text="Label14" />
        <Label Text="Label15" />
        <Label Text="Label16" />
        <Label Text="Label17" />
        <Label Text="Label18" />
        <Label Text="Label19" />
        <Label Text="Label20" />
        <Label Text="Label21" />
        <Label Text="Label22" />
        <Label Text="Label23" />
        <Label Text="Label24" />           
      </StackLayout>
    </ScrollView>
  </ContentView>
</AbsoluteLayout>

谢谢, Santhiya A

0 个答案:

没有答案