WPF设置Image控件的图片淡入淡出更换

思路是这样的,文件夹里放1.jpg、2.jpg、3.jpg、4.jpg、5.jpg五张图片
用timer来控件更换图片的时间
主界面设置一个Storyboard故事板,用来写淡入淡出效果
触发timer事件的时候更换图片,然后淡入淡出效果启动

一、主界面故事板代码叫Tpjb ,这个故事板是用BLEND 4作的,效果不多也比较简单
<Window.Resources>
<Storyboard x:Key="Tpjb">
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Opacity)" Storyboard.TargetName="image1">
<EasingDoubleKeyFrame KeyTime="0" Value="0.1"/>
<EasingDoubleKeyFrame KeyTime="0:0:2" Value="1"/>
<EasingDoubleKeyFrame KeyTime="0:0:8" Value="1"/>
<EasingDoubleKeyFrame KeyTime="0:0:10" Value="0.1"/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</Window.Resources>
<Window.Triggers>
<EventTrigger RoutedEvent="FrameworkElement.Loaded">
<BeginStoryboard Storyboard="{StaticResource Tpjb}"/>
</EventTrigger>
</Window.Triggers>  

二、后台代码页里的Timer代码

加上下面的命名空间
using System.Windows.Threading;
using System.Threading;
using System.IO;
using System.Windows.Media.Animation;

//这里这个bj变量是用于换图片
int bj = 1;

//在WPF中没有Timer控件只能new一个,其实写法用法都一样
DispatcherTimer Dshtp = new DispatcherTimer();

public MainWindow()
{
      InitializeComponent();
      stdStart = (Storyboard)this.Resources["Tpjb"];

      //new TimeSpan( 100000000  )设置10秒换一次图片
      Dshtp.Tick += new EventHandler(Dshtp_Tick);
      Dshtp.Interval = new TimeSpan(100000000);
      Dshtp.Start();
}
 
 //换图片事件****************************************
void Dshtp_Tick(object sender, EventArgs e)
{
       if (bj< 5)
        {
              bj = bj + 1;
        }
        else
        {
             bj = 1;
        }
        image1.Source = new BitmapImage(new Uri("Image/"+bj.ToString()+".jpg", UriKind.Relative));

        //启动淡入淡出效果        
       stdStart.Begin();
}
//*************************************************  
  • 3
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值