我在XAML中有类似的内容:
<StackLayout>
<AbsoluteLayout>
<StackLayout2>
<Button>
<Something>
</StackLayout2>
<Label animated>
</AbsoluteLayout>
<any content ...>
</StackLayout>
我希望动画在单击按钮时从上到下移动文本。在动画期间,标签应位于stacklayout2的后面。仿佛从下面移了过来。 AbsoluteLayout的高度应增加。任何内容也应转移。如何实现呢?
我对任何内容转换都特别感兴趣。
据我了解,动画本身很容易实现:等待showingText.TranslateTo(0,120,2000);