When implementing a new SilverLight custom control, it was blocking menu popups (html / javascript) on the page. I set the z-index of the div and object tags that contained SilverLight to no avail. After a lot of googling, I found the following solution.

Set the Windowless property to true. In the case of manually adding SilverLight to the page, that results in the following child tag of the object tag…

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

Update: I recently read Professional Silverlight 4 (Wrox Programmer to Programmer) and highly recommend it for developers working with SilverLight. Used copies are pretty affordable.

Post to Twitter