Firefox 不显示 silverlight 控件

发布于 2024-08-28 04:30:23 字数 302 浏览 7 评论 0原文

我有一个 silverlight 应用程序,其中使用无窗口属性来显示文本。 Silverlight插件大小是1000*2000,我在顶部有一个按钮(silverlight控件)。 我正在使用 DIV 实时显示一些 html 文本。它工作正常。

我的 Silverlight 插件 & DIV 两个样式属性都是=“position:absolute”。

该应用程序在 IE 中工作正常,但是当我在 Firefox 中运行该应用程序时,按钮无法显示。

请让我知道 Firefox 有什么问题吗?

提前致谢, 拉克斯米拉尔

I have a silverlight application in which I am using the windowless property to show text .
Silverlight Plugin Size is 1000*2000, I Have a button (siverlight control) on the Top.
I am showing some html text using DIV real time. Its working fine.

My Silverlight Plugin & DIV both style property is= "position:absolute'.

This application is working fine in IE, but When I run this application in Firefox Button doesn't dsiplayed.

Please let me know whats a issue with Firefox ?

Thanks in advance,
Laxmilal

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

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

发布评论

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

评论(1

奈何桥上唱咆哮 2024-09-04 04:30:23

在您的 html 中,在 CSS 中指定以下代码,

html {
height: 100%;
}
body {
height: 100%;
padding: 0;
margin: 0;
min-width: 800px;
min-height: 600px;
}

#silverlightControlHost {
height: 100%;}  

然后在正文中

<div id="silverlightControlHost">
<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
    <param name="source" value="SOURCE OF YOUR XAP"/>
    <param name="autoUpgrade" value="true" />
                <!--Your other para-->
</object>

指定

In your html, specify following code in CSS

html {
height: 100%;
}
body {
height: 100%;
padding: 0;
margin: 0;
min-width: 800px;
min-height: 600px;
}

#silverlightControlHost {
height: 100%;}  

Then in the body

<div id="silverlightControlHost">
<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
    <param name="source" value="SOURCE OF YOUR XAP"/>
    <param name="autoUpgrade" value="true" />
                <!--Your other para-->
</object>

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