我正在尝试为包含 ScrollView 的 ContentView 设置 AbosoluteLayout.TranslatedTo。在那, ScrollView 不能在触摸上工作,但它正在处理鼠标交互。我在 C# 中将代码添加为 propertiesView.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