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
查看全文
相关阅读:
TypeError: Buffer.alloc is not a function
node.js服务端程序在Linux上持久运行
C#中的反射
群要事日记
vs2017 自定义生成规则 错误 MSB3721 命令 ”已退出,返回代码为 1。
VP9 Video Codec
用户手册是Yasm汇编
更改Mysql数据库存储位置
注册表项
C#开发可以可视化操作的windows服务
原文地址:https://www.cnblogs.com/gwazy/p/815019.html
最新文章
MySQL5.6 新特性之GTID【转】
redis和memcached的区别(总结)
Java笔记4:JDBC纯驱动方式连接Oracle
Java笔记3:Eclipse添加jar包
Java笔记2:Eclipse编写第一个Java程序
Java笔记1:IntelliJ IDEA详细安装步骤
查看MySQL数据库大小
mysql show profiles使用分析sql性能
MySQL运行状态show status中文详解
linux负载均衡总结性说明(四层负载/七层负载)
热门文章
XDebug 教程
PHP Xdebug调试专题
大型网站技术架构演化
node.js之十大Web框架
javascript之Map
Springboot实现跨域请求
node.js如何引用其它js文件
jenkins忘记管理员密码之解决方案
mybatis之一对多
mybatis错误之org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)
Copyright © 2011-2022 走看看