Silverlight对象未在Firefox中显示

时间:2012-04-24 13:12:26

标签: c# silverlight firefox

我检查过这个问题:

Firefox and Silverlight

但我没有使用任何100%的宽度或高度,也没有使用动态值。我不确定这是否是由于FF更新,因为那段HTML在2周前工作得非常好。

我直接指定宽度和高度:

<div id="silverlightControlHost" 
     style="height: 200px !important;width: 300px !important;position: fixed !important;">
  <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="300" height="200">
    <param name="source" value="/ClientBin/BunkerTimer.xap"/>
    <param name="onError" value="onSilverlightError" />
    <param name="minRuntimeVersion" value="5.0.61118.0" />
    <param name="autoUpgrade" value="true" />
    <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=5.0.61118.0" style="text-decoration:none">
    <img src="http://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none;width: 400px !important;"/>
    </a>
</object><iframe id="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe>
</div>

我可以添加background-color并且我看到它正确,它只是没有加载的Silverlight对象。

您可以在此处http://www.bunkerapp.com/addons直播。这在Safari,Chrome和Internet Explorer中都可以正常使用。

任何指针都会受到赞赏。

2 个答案:

答案 0 :(得分:3)

我解决了这个问题,添加了由Site.Master或_Layout.cshtml中的silverlight测试页生成的css样式。

<style type="text/css">
    html, body {
        height: 100%;
        overflow: auto;
    }
    body {
        padding: 0;
        margin: 0;
    }
    #silverlightControlHost {
        height: 100%;
        text-align:center;
    }
</style>

答案 1 :(得分:2)

似乎在Firefox中,object的高度为0;

我通过向对象元素添加内联样式属性来实现它:

style="width:300px;height:200px"