WPF实现淡入淡出效果

淡入淡出的功能可以通过WPF中的动画调整控件的透明度来实现。

xaml代码如下:


        
            
            
            
        
        
            
            
        
        
        
        
    

C#代码如下:

private void btn_danru_Click(object sender, RoutedEventArgs e) {
            DoubleAnimation daV = new DoubleAnimation(0,1,new Duration(TimeSpan.FromSeconds(1)));
            this.image_monkey.BeginAnimation(UIElement.OpacityProperty, daV);
        }

        private void btn_danchu_Click(object sender, RoutedEventArgs e) {
            DoubleAnimation daV = new DoubleAnimation(1, 0, new Duration(TimeSpan.FromSeconds(1)));
            this.image_monkey.BeginAnimation(UIElement.OpacityProperty, daV);
        }

运行界面如图:
WPF实现淡入淡出效果_第1张图片

你可能感兴趣的:(WPF)