Using .net framework 4.7, in a WPF application using the WebBrowser control, does this support displaying Lottie animations?
Asked
Active
Viewed 42 times
1 Answers
0
I don't think so. The WebBrowser
control uses the legacy Internet Explorer browser under the hood.
You should use the WebView2 control to display modern embedded web pages in a WPF application.

mm8
- 163,881
- 10
- 57
- 88
-
Thanks for the reply,. Yeah, that's pretty much the conclusion I've come to as well. I am able to display lottie files using the WebView2 control but the differences between the WebBrowser and WebView2 controls, especially DOM access, would require some significant re-work in my project. Long term, the switch would be worthwhile but for now, we'll probably take a different route. – EOAsus Mar 29 '23 at 17:29