- function createControlPanel()
- {
- Silverlight.createObjectEx({
- source: "controlPanel.xaml",
- parentElement: document.getElementById("dotControlPanel"),
- id: "slControlPanel",
- properties: {
- width: "100%",
- height: "100%",
- inplaceInstallPrompt:true,
- version: "1.0"
- }
- });
- }
- if (!window.Silverlight)
- window.Silverlight = {};
- Silverlight.createDelegate = function(instance, method) {
- return function() {
- return method.apply(instance, arguments);
- }
- }
复制代码 |