index.html.js
上传用户:wenllgg125
上传日期:2020-04-09
资源大小:7277k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

Others

  1. // JScript source code
  2. //contains calls to silverlight.js, example below loads Page.xaml
  3. function createSilverlight()
  4. {
  5. Silverlight.createObjectEx({
  6. source: "Page.xaml",
  7. parentElement: document.getElementById("SilverlightControlHost"),
  8. id: "SilverlightControl",
  9. properties: {
  10. width: "100%",
  11. height: "100%",
  12. version: "1.1",
  13. enableHtmlAccess: "true"
  14. },
  15. events: {}
  16. });
  17.    
  18. // Give the keyboard focus to the Silverlight control by default
  19.     document.body.onload = function() {
  20.       var silverlightControl = document.getElementById('SilverlightControl');
  21.       if (silverlightControl)
  22.       silverlightControl.focus();
  23.     }
  24. }