程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> WPF顯示GIF圖的幾種方式,wpfgif圖幾種

WPF顯示GIF圖的幾種方式,wpfgif圖幾種

編輯:C#入門知識

WPF顯示GIF圖的幾種方式,wpfgif圖幾種


使用MediaElement

  這種方式有一個局限就是圖片路徑必須是絕對路徑

 <MediaElement Source="file://C:\129.gif" />

  並且你還需要設置讓他循環播放

<MediaElement Source="file://C:\129.gif" MediaEnded="MediaElement_MediaEnded"/>
  private void MediaElement_MediaEnded(object sender, RoutedEventArgs e)
  {
      ((MediaElement)sender).Position=((MediaElement)sender).Position.Add(TimeSpan.FromMilliseconds(1));
  }

通過winform中的PictureBox控件

  這種方式可以指定相對路徑;首先,你需要在wpf程序中添加window的程序集引用:System.Drawing.dll、System.Windows.Forms.dll和WindowsFormsIntegration.dll

  引用類型後,你就可以在XAML代碼中使用winform中的PictureBox了

  xmlns:wfi="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
  xmlns:winForms="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
  <wfi:WindowsFormsHost>
      <winForms:PictureBox x:Name="PictureOfGif"></winForms:PictureBox>
  </wfi:WindowsFormsHost>

  在程序load事件中綁定圖片

    void MainWindow_Loaded(object sender, RoutedEventArgs e)
    {
        this.PictureOfGif.Image = System.Drawing.Image.FromFile("images/129.gif");
    }

 WpfAnimatedGif

  可以通過控制台或者Nuget安裝

  Install-Package WpfAnimatedGif

xmlns:gif="http://wpfanimatedgif.codeplex.com"
<Image gif:ImageBehavior.AnimatedSource="Images/animated.gif" />

  GitHub地址:https://github.com/XamlAnimatedGif/WpfAnimatedGif

相關文檔:

https://nnish.com/tag/animated-gif-in-wpf/

https://social.msdn.microsoft.com/Forums/vstudio/en-US/93d50a97-0d8d-4b18-992e-cd3200693337/how-to-use-an-animated-gif?forum=wpf

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved