Reputation:
How can I add an animated image (such as GIF) into a ListView control in a Windows application?
Upvotes: 1
Views: 4178
Reputation: 6882
ObjectListView (an open source wrapper around a standard ListView) can display animated GIFs (as well as doing lots of other more useful features). Have a look at the demo to see them in action.
There is also an article on CodeProject which describing this control.
Upvotes: 0
Reputation: 6580
Assuming you are talking about .NET (C# / VB.NET). I don't think this is possible by default. You can choose to implement one using owner drawn. See this for example.
Upvotes: 1