如何使用 javascript 设置 silverlight 插件的值

发布于 2024-12-01 18:17:13 字数 366 浏览 1 评论 0原文

我似乎不知道如何为 Silverlight 插件设置特定值。具体来说,是splashScreenSource 值。我可以使用 param(名称/值)方法来实现此功能,但是,我使用 JavaScript 注入 Silverlight 插件,因此不确定如何让插件识别出我实际上所做的事情想要使用启动画面。

我似乎无法使用默认 Silverlight.js 文件提供的参数列表来设置该值。

Silverlight.createObject( source ,parentElement , id ,properties , events , initParams , userContext );

任何想法都将不胜感激,

非常感谢,

I can't seem to figure out how to set a particular value for the Silverlight Plug-in. Specifically, the splashScreenSource value. I'm able to get this working using the param (name/value) method, however, I'm injecting the Silverlight plug-in using JavaScript and therefore not sure how I can get the plug-in to recognize that I do in fact want to use a splashscreen.

It doesn't appear that I can set the value using the args list provided via the default Silverlight.js file.

Silverlight.createObject( source , parentElement , id , properties , events , initParams , userContext );

Any idea's will be greatly appreciated,

thanks much,

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

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

发布评论

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

评论(1

随心而道 2024-12-08 18:17:13

属性参数应该是一个 JavaScript 对象,其属性与参数名称集相匹配,并添加了一些附加内容,例如宽度和高度。因此,您可以将以下对象传递给属性参数。

var properties = {splashscreensource: "splash.xaml"};

The properties parameter is expected to be a JavaScript object whose properties match the set of param names with a few additions such as width and height. So you can pass the following object to properties parameter.

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