在我的aspx页面中,我创建了两个。在第一个,我使用aspx菜单,在第二个面板中,添加Silverlight对象。但我可以看到,在浏览器的底部,有一个高度为100px(大约)的空白空间。为什么要添加这个空间?如何删除该空间?
提前完成。
示例代码:
<asp:Panel ID="pnlMenu" runat="server">
<table width="100%">
<tr>
<td>
<img id="imgLogo" alt="no image" style="float:left;display:none;height:20px; width:90px;" />
</td>
<td>
<img src="sample.png" alt="no image" style="float: right" />
</td>
</tr>
<tr>
<td>
Code to add menu
</td>
</tr>
</table>
</asp:Panel>
<asp:Panel ID="silverlightControlHost" runat="server" ClientIDMode="Static">
<object data="data:application/x-silverlight-2," type="application/x-silverlight-2"
width="100%" name="silverlight1" id="SLobj" style="margin: 0px; padding: 0px;">
<param name="source" value="Sample.xap" />
<param name="onerror" value="onSilverlightError" />
<param name="background" value="white" />
<param name="initparams" value="clientip=<%= Request.UserHostAddress %>, username=<%= HttpContext.Current.User.Identity.Name %>, StartupMode=HTML" />
<param name="minRuntimeVersion" value="4.0.50401.0" />
<param name="autoUpgrade" value="true" />
<param name="onLoad" value="SilverlightpluginLoaded" />
<param name="culture" value="<%= System.Threading.Thread.CurrentThread.CurrentCulture.Name %>" />
<param name="windowless" value="true" />
<param name="uiculture" value="<%= System.Threading.Thread.CurrentThread.CurrentUICulture.Name %>" />
<a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50401.0" style="text-decoration: none;">
<img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight"
style="border-style: none" />
</a>
</object>
<iframe id="_sl_historyFrame" style='visibility: hidden; height: 0; width: 0; border: 0px'>
</iframe>
</asp:Panel>
答案 0 :(得分:0)
试试这些
清除漂浮物。在表的末尾添加一个div并将样式设置为“clear:both” 对于页面底部的iframe,删除visibility:hidden样式并添加“display:none”
答案 1 :(得分:0)
我认为你必须从silverlight应用程序设置高度和宽度。 尝试在Silverlight应用程序中设置高度和宽度。 比如设置贝弗洛的页面属性。
VerticalAlignment="Stretch" HorizontalAlignment="Stretch"
答案 2 :(得分:0)
将Height = 100%添加到Object标记。现在,它只设置宽度。