我需要在Image控件中显示图像,这些图像在SQL数据库中以数据类型Image定位。但是我的代码显示图像,但不显示动画。我需要做什么。请帮助
XAML:
<Image x:Name="PictureBox1" Width="450" Margin="106,35,7,12"/>
后面的代码:
Dim ms As New IO.MemoryStream(dr("Image1"))
Dim source As BitmapFrame = BitmapFrame.Create(ms,BitmapCreateOptions.PreservePixelFormat,BitmapCacheOption.OnLoad)
PictureBox1.Source = source