zoukankan      html  css  js  c++  java
  • Silverlight 学习

     
    http://silverlight.cn/getstarted/default.aspx

    参考这的。。

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html>
    <head>
        
    <title>My First Silverlight Page</title>
        
    <script src="js/Silverlight.js" type="text/javascript"></script>
    </head>
    <body>

    <br />
      
    <center>
         
    <div id="Ag1Host" style="background:#FFFFFF">
            
    <script type="text/javascript">
               
    var pe1 = document.getElementById("Ag1Host");
            
    </script>
         
    </div>
      
    </center>

    <script>
    Sys.Silverlight.createObjectEx(
    {source: 'js/aaa.xml', parentElement:pe1, id:'Ag1', properties:{'300', height:'100', background:'#00FFFFFF', isWindowless:'true', framerate:'24', version:'0.90.0'}, events:{onError:null, onLoad:null}, context:null});
    </script>

    </body>
    </html>


    <Canvas 
       
    xmlns="http://schemas.microsoft.com/client/2007"
       xmlns:x
    ="http://schemas.microsoft.com/winfx/2006/xaml">

        
    <TextBlock FontSize="36" Canvas.Left="17" Canvas.Top="10" Foreground="Blue">Hello Silverlight</TextBlock>

    </Canvas>

    有兴趣的朋友看看这。

    http://www.riaforum.com/examples/Jelly/Graph.htm
    http://www.riaforum.com/examples/Jelly/Pie.htm
    http://www.riaforum.com/examples/Jelly/Bar.htm
  • 相关阅读:
    BOM-DOM
    JavaScript
    CSS(2)
    CSS(1)
    HTML5
    索引
    数据库多表查询
    数据操作
    数据库表操作
    初识Java
  • 原文地址:https://www.cnblogs.com/gwazy/p/815019.html
Copyright © 2011-2022 走看看