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
查看全文
相关阅读:
三种renderman规范引擎的dice对比
球形环境映射之angular与latlong格式互换
SharePoint中的ASHX
如何查看SharePoint未知错误的详细信息
在SQL Server 2008设置发送邮件步骤详解
项目管理软件对比
海外云服务器VPS
国内和国外域名注册商介绍
快速将一个表的数据生成SQL插入语句
使用sql server 链接服务器
原文地址:https://www.cnblogs.com/gwazy/p/815019.html
最新文章
Codeforces 1264C Beautiful Mirrors with queries (概率dp)
Codeforces 185D Visit of the Great (数学基础,数论)
codeforces 2600+ Math标签刷题笔记
Gordon家族(二)
Gordon家族(一)
docker容器中使用rsyslogd
通过GitHub和GoDaddy搭建静态个人博客
C++中class的类型转换重载
C++中各种类的大小
Kubernetes中的垃圾回收机制
热门文章
Centos下Kubernetes+Flannel部署(新)
在k8s中搭建可解析hostname的DNS服务
Kubernetes+Flannel 环境中部署HBase集群
链接
demo和实际项目的距离
光线追踪发射主光线
ray与triangle/quad求交二三事
renderman、arnold及全局光照
thoughtworks编程题
关于反射率(reflectance)
Copyright © 2011-2022 走看看