2012-01-10 83 views
0

已經閱讀了許多關於此的文章,這裏是我提出的代碼。 有人可以告訴我爲什麼<table>不覆蓋SL應用程序的頂部?我知道我發佈的表沒有任何可見的內容,但是在我的代碼中它確實存在。Silverlight應用程序中的html覆蓋

<style type="text/css"> 
    #TABLESTYLE 
    { 
    position:absolute; 
    top:0px; 
    left:0px; 
    } 
    </style> 

    <style type="text/css"> 
    #SLSTYLE 
    { 
    position:absolute; 
    top:100px; 
    left:0px; 
    } 
    </style> 

    </head> 
    <body> 

    <table id="TABLESTYLE" width="100%" border=0 bordercolor="#5b5b5b" cellspacing=0           cellpadding=0 z-index=1> 
    <col width="10%"> 
    <col width="80%"> 
    <col width="10%"> 
    <tr> 
    <div style="font-family:Arial; height:128px; width:100%; background:#5b5b5b;"> 
    </table> 

     <form id="SLSTYLE" runat="server" style="height:100%" z-index=-1> 
     <div> 
     <object data="data:application/x-silverlight-2," type="application/x-silverlight- 2" width="100%" height="100%"> 
    <param name="source" value="xxx.WebUI.xap"/> 
    <param name="onError" value="onSilverlightError" /> 
    <param name="background" value="white" /> 
    <param name="minRuntimeVersion" value="4.0.50826.0" /> 
    <param name="autoUpgrade" value="true" /> 
     <param name="windowlessmode" value="true" />   
    </form> 


    </body> 

回答

1

它應該工作,但良好的參數名稱是「無窗口」,而不是windowlessmode。

看到http://msdn.microsoft.com/fr-fr/library/cc838156(v=VS.95).aspx

+0

[US MSDN鏈接](http://msdn.microsoft.com/en-us/library/cc838156(V = VS.95)的.aspx)。此外,根據這個http://forums.silverlight.net/t/16731.aspx也包括'' – MikeM 2012-01-10 20:23:04

+0

在我所有使用電腦的時間裏,我可以誠實地說我從來沒有停止爲自己的愚蠢感到驚訝。當然這很簡單,我甚至沒有想過要檢查它是否正確。謝謝。 – Josh 2012-01-11 00:56:03