gpt4 book ai didi

c# - 我如何使用 MVVM 在 Xamarin.Forms 中创建动画

转载 作者:行者123 更新时间:2023-11-30 23:08:52 27 4
gpt4 key购买 nike

我想创建一个按下图标时触发的动画

我如何在遵循 MVVM 模式的同时做到这一点。

查看

<Image Source="ic_test.png" HorizontalOptions="Center" VerticalOptions="Start" Margin="16,24,16,0">
<Image.GestureRecognizers>
<TapGestureRecognizer Command="{Binding AnimationTestCommand}" />
</Image.GestureRecognizers>
</Image>

最佳答案

你需要创建一个自定义图像并像下面这样点击动画:

public class CustomImage : Image
{
public CustomImage() : base()
{
const int _animationTime = 10;
var iconTap = new TapGestureRecognizer();
iconTap.Tapped += async (sender, e) =>
{
try
{
var btn = (CustomImage)sender;
await btn.ScaleTo(5, _animationTime);
//await btn.ScaleTo(1, _animationTime);
}
catch (Exception ex)
{
ex.Track();
}
};

}
}

关于c# - 我如何使用 MVVM 在 Xamarin.Forms 中创建动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46276132/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com