2009-10-24 23 views

回答

2

嘗試在創建silverlight對象時將isWindowsless設置爲true。將它作爲參數傳入。 Windowsless Silverlight應用程序的z-index爲1,因此可以覆蓋它們。我確實聽到你的表現受到傷害。

代碼:

  1. 如果您使用<object>標籤直接然後添加:

    <param name="windowless" value="true" />

  2. 如果您使用asp:Silverlight控制然後加入:

    <asp:Silverlight ID="foo" Windowless="true" ... />

  3. 如果您使用Silverlight.js然後加入:
    function createSilverlight() { Sys.Silverlight.createObject( "HelloWorld.xaml", parentElement, "myPlugin", // Unique plug-in ID value. { isWindowless:'true', // Determines whether to display plug-in in windowless mode. }, }

相關問題