views:

267

answers:

1

Basically i want to utilize the Silverlight Video player on Codeplex in another Silverlight application. Is this possible. Can anyone point me in the right direction on how to achieve this?

Thanks J

A: 

If you just have a few assemblies of interest, such as those video player .dll files, then you could of course:

  1. Rename the .xap to .zip
  2. Extract the contents
  3. Copy the .dll assemblies into your project
  4. Reference the .dll's

Unfortunately, I'm guessing that you might be wanting to take advantage of the actual video player application - which includes custom handling for init parameters of the control, and just include that .Xap file into your solution. I don't know of an easy way to do that.

Jeff Wilcox