1. 程式人生 > >【C#】wpf新增gif動圖支援

【C#】wpf新增gif動圖支援

1.nuget裡下載XamlAnimatedGif包,然後安裝。


2.新增XamlAnimatedGif包的名稱空間:xmlns:gif="https://github.com/XamlAnimatedGif/XamlAnimatedGif"

3.開始使用:

 <Image gif:AnimationBehavior.SourceUri="{StaticResource loading.gif}" Width="200" Height="20"></Image>

主要的就是把AnimatedSource設定為你的gif動畫。

注意nuget庫裡還有個顯示gif的包:WpfAnimatedGif

。不建議使用這個,會導致記憶體洩露,最後程式崩潰。