我可以将 .xap 文件添加到另一个项目中吗

发布于 2024-07-29 17:30:42 字数 233 浏览 6 评论 0原文

基本上我想在另一个 Silverlight 中使用 Codeplex 上的 Silverlight 视频播放器应用。 这可能吗。 谁能指出我如何实现这一目标的正确方向?

谢谢 J

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

请恋爱 2024-08-05 17:30:42

如果您只有一些感兴趣的程序集,例如那些视频播放器 .dll 文件,那么您当然可以:

  1. 将 .xap 重命名为 .zip
  2. 提取内容
  3. 将 .dll 程序集复制到您的项目中
  4. 引用 .dll

不幸的是,我我猜测您可能想要利用实际的视频播放器应用程序 - 其中包括对控件的初始化参数的自定义处理,并且只需将该 .Xap 文件包含到您的解决方案中。 我不知道有什么简单的方法可以做到这一点。

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.

笔芯 2024-08-05 17:30:42

添加另一个 xap 文件到您的项目中,是的。 您需要手动加载 xap 包内的程序集才能使用它。

在此处检查可下载的项目解决方案: http://www.wintellect.com/CS/blogs/jprosise/archive/2010/06/21/dynamic-localization-in-silverlight.aspx

该解决方案基本上有两个 silverlight 项目,ExternalResources 项目的生成的 xap 被创建,并且它的程序集在需要时手动加载。

adding another xap file to your project, yes. you'll need to manually load the assemblies inside the xap package to utilize it.

Check the downloadable project solution here: http://www.wintellect.com/CS/blogs/jprosise/archive/2010/06/21/dynamic-localization-in-silverlight.aspx

the solution basically has two silverlight projects, the ExternalResources project's generated xap gets created and it's assemblies are manually loaded when needed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文