I want to add a silverlight control to a div panel at runtime (dynamically) ( on an aspx or user 开发者_如何学JAVAcontrol) . How can one achieve this?
Use this to create plugin dynamically
function createSL(pathToXAP, parentElement) {
Silverlight.createObjectEx(
{
source: pathToXAP,
parentElement: document.getElementById(parentElement),
id: "sltest",
properties: { width: "100%", height: "100%", background: "white", version: "4.0.50401.0" },
events: { onError: onSilverlightError }
});
}
pathToXAP -e.g. '<%= ResolveUrl("~/ClientBin/MySilverlight.xap") %>' parentElement is div's name
This function you can call from JS or from Silverlight as you need
精彩评论