UWP 利用Windows.UI.Composition实现简单的放大🔍效果

Posted hupo376787

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UWP 利用Windows.UI.Composition实现简单的放大🔍效果相关的知识,希望对你有一定的参考价值。

看一下效果先

技术图片

 

 

我这里实现了鼠标进入和退出的效果,当然也可以添加其他的事件,比如获得焦点和失去焦点的。

先随便写一个xaml布局,一个Grid,里面一张图片。

<Grid 
            x:Name="GridA"
            Width="400" Height="240" 
            PointerEntered="Grid_PointerEntered" 
            PointerExited="Grid_PointerExited">
            <Image Source="https://images.cnblogs.com/cnblogs_com/hupo376787/1091131/o_712.png"/>
</Grid>

 

然后

        private void Grid_PointerEntered(object sender, PointerRoutedEventArgs e)
        {
            CreateOrUpdateSpringAnimation(1.1f);
            GridA.StartAnimation(_springAnimation);
        }

        private void Grid_PointerExited(object sender, PointerRoutedEventArgs e)
        {
            CreateOrUpdateSpringAnimation(1.0f);
            GridA.StartAnimation(_springAnimation);
        }

 

CreateOrUpdateSpringAnimation的代码

        private void CreateOrUpdateSpringAnimation(float finalValue)
        {
            if (_springAnimation == null)
            {
                _springAnimation = _compositor.CreateSpringVector3Animation();
                _springAnimation.Target = "Scale";
            }

            _springAnimation.FinalValue = new Vector3(finalValue);
        }

 

不过按照这样的实现的话,在放大的时候,图片并不是和我的一模一样,因为放大的时候中心点默认是左上角(0, 0).

技术图片

 

所以为了实现中心放大效果,在PointerEntered事件里面还需要

GridA.CenterPoint = new Vector3((float)(GridA.ActualWidth / 2.0), (float)(GridA.ActualHeight / 2.0), 1f);

 

 

好了,这样就可以实现中心放大??的效果了。

 

以上是关于UWP 利用Windows.UI.Composition实现简单的放大🔍效果的主要内容,如果未能解决你的问题,请参考以下文章

UWP 切换语言

UWP -- Background Task 深入解析

[UWP]不那么好用的ContentDialog

[UWP小白日记-3]记账项目-1

3)Win10-UWA开发 API參考 - 2

UWP / XAML C# 是不是与 Spotify API 兼容?