views:

627

answers:

1

Is it possible to play a QuickTime Video in WPF? If yes, can anyone provide me the resources.

+1  A: 

Quicktime is a tricky thing on Windows. The APIs pretty much don't exist for any language except C++. Here's some documentation from the Apple developer website; Quicktime Development For Windows. But I doubt this will be useful for your WPF development.

Another option is to use the Quicktime ActiveX control/COM object. Its essentially a built in player with minimal control.

Soviut