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
查看全文
相关阅读:
arcgis10.4.X的oracle数据库要求
面试高峰期,如何应对面试官的jvm刁难,特写一篇jvm面经(第一部)
某公司面试打分文档,75分通过
git-github 提示Permission denied (publickey) (windows)
jar项目 BeanDefinitionParsingException: Configuration problem:Unable to locate Spring NamespaceHandler for XML schema namespace
关于No Spring WebApplicationInitializer types detected on classpath的提示,tomcat 卡主
spring+orm框架的兼容问题
程序员常用工具
IDEA-常见问题
IDEA-基本设置
原文地址:https://www.cnblogs.com/gwazy/p/815019.html
最新文章
【如何阅读一本书】略读。
【代码整洁之道】读书笔记
发烧
Java代理全攻略【有瑕疵:字节码生成部分没看到,最后两节没仔细看,累了】
【重构.改善既有代码的设计】14、总结&读后感
【重构.改善既有代码的设计】13、重构,复用与现实
【重构.改善既有代码的设计】12、大型重构
【重构.改善既有代码的设计】5、重构名录
【重构.改善既有代码的设计】4、构筑测试体系
【重构.改善既有代码的设计】3、代码的坏味道
热门文章
【重构.改善既有代码的设计】2、重构原则
【重构.改善既有代码的设计】1、前言
【重构.改善既有代码的设计】11、处理概括关系【更优雅的继承】
arcgis发布服务后显示证书不安全,将https改为http
用FME处理物探点表和线表,生成管线和设施
使用FME对CAD数据进行过滤、中心点替换转为shapefile
SuperMap许可常见问题及解决办法
ORA-01017的一种情况:sysdba可以登录,normal不可登录
使用FME对CAD管网数据进行过滤、聚合、中心点替换
oracle 10.1-10.4版本的oracle数据库要求
Copyright © 2011-2022 走看看