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
查看全文
相关阅读:
hdu 1296
hdu 2101
hdu 2100
codeforces 3C
codeforces 2A
codeforces 1B
codeforces 811B
关于sws_scale() 段错误
cf 1288 D. Minimax Problem (好题)(二分+二进制表状态+枚举)
opencv4 鼠标事件 鼠标画线条
原文地址:https://www.cnblogs.com/gwazy/p/815019.html
最新文章
Java面试知识点之Java基础
站内信
freemarker入门
Eclipse注释模板
mysql之sql语句写法
Mac终端命令
报错:java.net.UnknownHostException: iMac: nodename nor servname provided, or not known
正则表达式
oracle 数据库如何恢复到指定时间
第二章、springboot整合web
热门文章
前端页面学习记录
第一章、springboot项目创建
CENTOS环境配置jdk与tomcat
第一章、网络架构名词总结
请求转发与重定向路径
第二章、HTTP协议协议
PageHelper 使用流程
codeforces 82A
codeforces 208A
poj 2106
Copyright © 2011-2022 走看看