tags:

views:

377

answers:

2

Hi Guys Is it possible to play flash in WPF?I need to create user control wich play file .swf

A: 

http://social.msdn.microsoft.com/forums/en-US/wpf/thread/d1b962c7-8a47-4809-a6e7-43f1a800a6eb/

AndyGeek
your given link source is not enough ...
+1  A: 

You have a few choices. Unfortunately I've never tried it, but I'd like to point you in the right direction:

  • The WebBrowser control (ShDocVw and all that fun) is an HTML-hosting surface, you might be able to dynamically generate and host HTML containing the standard Flash plugin.

  • The Flash ActiveX control ~ it may be possible to host it right inside your

Hope this gets you started. You'll probably end up using Windows Forms interop. Feel free to edit with more useful links.

Jeff Wilcox