添加Silverlight应用到HTML
Silverlight是跨浏览器,跨客户平台的浏览器插件,可以应用在Windows,Linux,Mac等平台。作为浏览器插件,Silverlight可以像Flash一样,很方便的嵌套在HTML页面中,下面我来介绍一下,如何添加Silverlight应用到HTML页面。
2 <html xmlns="http://www.w3.org/1999/xhtml" >
3
4 <head>
5 <title>Html_SilverlightChina</title>
6 <style type="text/css">
7 html, body {
8 height: 100%;
9 overflow: auto;
10 }
11 body {
12 padding: 0;
13 margin: 0;
14 }
15 #silverlightControlHost {
16 height: 100%;
17 text-align:center;
18 }
19 </style>
20 <script type="text/javascript" src="Silverlight.js"></script>
21 <script type="text/javascript">
22 function onSilverlightError(sender, args) {
23 var appSource = "";
24 if (sender != null && sender != 0) {
25 appSource = sender.getHost().Source;
26 }
27
28 var errorType = args.ErrorType;
29 var iErrorCode = args.ErrorCode;
30
31 if (errorType == "ImageError" || errorType == "MediaError") {
32 return;
33 }
34
35 var errMsg = "Unhandled Error in Silverlight Application " + appSource + "\n" ;
36
37 errMsg += "Code: "+ iErrorCode + " \n";
38 errMsg += "Category: " + errorType + " \n";
39 errMsg += "Message: " + args.ErrorMessage + " \n";
40
41 if (errorType == "ParserError") {
42 errMsg += "File: " + args.xamlFile + " \n";
43 errMsg += "Line: " + args.lineNumber + " \n";
44 errMsg += "Position: " + args.charPosition + " \n";
45 }
46 else if (errorType == "RuntimeError") {
47 if (args.lineNumber != 0) {
48 errMsg += "Line: " + args.lineNumber + " \n";
49 errMsg += "Position: " + args.charPosition + " \n";
50 }
51 errMsg += "MethodName: " + args.methodName + " \n";
52 }
53
54 throw new Error(errMsg);
55 }
56 </script>
57 </head>
58 <body>
59 <form id="form1" runat="server" style="height:100%">
60 <div id="silverlightControlHost">
61 <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
62 <param name="source" value="ClientBin/Html_SilverlightChina.xap"/>
63 <param name="onError" value="onSilverlightError" />
64 <param name="background" value="white" />
65 <param name="minRuntimeVersion" value="3.0.40818.0" />
66 <param name="autoUpgrade" value="true" />
67 <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=3.0.40818.0" style="text-decoration:none">
68 <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style:none"/>
69 </a>
70 </object><iframe id="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe></div>
71 </form>
72 </body>
73 </html>
2 <param name="source" value="ClientBin/Html_SilverlightChina.xap"/>
3 <param name="onError" value="onSilverlightError" />
4 <param name="background" value="white" />
5 <param name="minRuntimeVersion" value="3.0.40818.0" />
6 <param name="autoUpgrade" value="true" />
7 <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=3.0.40818.0" style="text-decoration:none">
8 <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style:none"/>
9 </a>
10 </object>
参数
|
介绍
|
AutoUpgrade
|
允许开发人员控制终端用户的Silverlight是否自动升级。默认为True
|
Background
|
设置应用背景颜色,默认为Null
|
enableFramerateCounter
|
是否在浏览器状态栏显示当前帧速率,默认为false
|
enableHtmlAccess
|
是否允许访问浏览器DOM,默认为false,如果为true,将允许Silverlight访问网页
|
iniParams
|
初始化参数信息,通过该参数可以从网页传递参数到Silverlight应用中,在Silverlight中可以通过后台代码获取参数(非常有用)
|
minRuntimeVersion
|
运行该应用的最低Silverlight版本,在本例中,最低版本是Silverlight 3.0.40818.0
|
maxFramerate
|
设置最大的帧速率,默认是每秒60帧
|
onLoad
|
可以在本事件中调用自定义Javascript函数
|
splashScreenSource
|
设置一个xaml文件作为下载XAP的时候,动画开始页面
|
Source
|
XAP路径
|
<img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style:none"/>
</a>
2 <param name="source" value="/jv9/Html_SilverlightChina.xap"/>
3 <param name="onError" value="onSilverlightError" />
4 <param name="background" value="white" />
5 <param name="minRuntimeVersion" value="3.0.40818.0" />
6 <param name="autoUpgrade" value="true" />
7 <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=3.0.40818.0" style="text-decoration:none">
8 <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style:none"/>
9 </a>
10 </object>
添加Silverlight应用到HTML的更多相关文章
- SharePoint 2013 Silverlight中使用Net客户端对象模型
1.创建Silverlight时,选择Silverlight 4,不要选择版本5,试了很久版本5都调用不了,自己也不知道什么原因,谷歌也没找到答案,后来尝试版本4,可以调用: 至于Host the S ...
- SharePoint 2013 中如何使用Silverlight
1.打开VS,创建一个Silverlight程序,如下图: 2.配置选择默认的,当然也可以不勾选Host Application,如下图: 3.添加Silverlight控件,2个label和1个bu ...
- [silverlight—wcf]参数:调试资源字符串不可用,秘钥和参数通常提供足够的信息用以诊断问题。
这段时间在做一个项目,有一项需求是上传,经过思考之后,决定采取Silverlight+WCF的方式做上传操作.就在项目做完了之后,本地测试也都没问题,发布到服务器上的时候,顿时就出现故障了.在选择文件 ...
- silverlight调用MVC WebApi方法
1.创建ASP.NET MVC4 Web应用程序,选择WebAPI模板 2.添加silverlight项目 3.新建一个数据模型类,代码如下: using System; using System.C ...
- silverlight将字符串转化为控件
silverlight的System.Windows.Markup命名空间下,提供了XamlReader.Load()方法可以将字符串转换为控件. 代码 StringBuilder sbGrid = ...
- ArcGIS API for Silverlight开发入门
你用上3G手机了吗?你可能会说,我就是喜欢用nokia1100,ABCDEFG跟我 都没关系.但你不能否认3G是一种趋势,最终我们每个人都会被包裹在3G网络中.1100也不是一成不变,没准哪天为了打击 ...
- aspx向silverlight传值
原文:http://www.cnblogs.com/lensso/archive/2010/07/27/1785844.html 方法1: 向嵌入aspx页面的silverlight对象添加imnit ...
- SharePoint 2010 -- Silverlight托管客户端模型简单示例
Silverlight托管客户端模型,是SharePoint2010推出的三种客户端模型".NET托管"."ECMAScript"."Sliverli ...
- silverlight 控件样式动态绑定
<telerik:RadDiagram x:Name="diagram1" GraphSource="{Binding GraphSource, Mode=TwoW ...
随机推荐
- Key words
Key words ACL - Access Control List IDS - Intrusion Dection Systems ASLR - Address-Space Layout Rand ...
- ubuntu 14.04安装pypcap
直接sudo apt-get install python-pypcap即可 How to install python-pypcap on Ubuntu 12.04 (Precise Pangoli ...
- [LeetCode] Candy 分糖果问题
There are N children standing in a line. Each child is assigned a rating value. You are giving candi ...
- Android实现类似换QQ头像功能(图片裁剪)
现在几乎所有的App都有用户登录模块,需要设置用户头像,而关于用户头像部分无疑也是比较头疼的,目前大部分应用的头像部分会有两种方式:一种是利用系统的裁剪功能去获取用户头像,一种就是获取到图片或者照片的 ...
- 【机器学习Machine Learning】资料大全
昨天总结了深度学习的资料,今天把机器学习的资料也总结一下(友情提示:有些网站需要"科学上网"^_^) 推荐几本好书: 1.Pattern Recognition and Machi ...
- [转]CSS如何设置html table表格边框样式
原文地址:http://www.divcss5.com/wenji/w503.shtml 对table设置css样式边框,分为几种情况: 1.只对table设置边框 2.对td设置边框 3.对tabl ...
- 在SpringMVC中使用@SessionAttributes和@ModelAttribute将数据存储在session域中
今天在我的springMVC项目--图书管理系统中,希望在登录时将登录的Users存在session中,开始是准备在controller中使用Servlet API中的对象,可是一直无法引用,不知道为 ...
- 2016总结&2017计划
2016总结 总体而言,上半年比较勤快,下半年偷懒了.下半年仔细看了Barfoot的书<state estimation for robotics>,收获很大. 2017计划 目前打算写以 ...
- sublime的插件安装
如何将Emmet安装到到 Sublime text 3? 看清楚哦~~这是Sublime text 3不是2的版本,两者的安装还是有区别的,下面的方法是我感觉比较简单的,其他的要命令什么的感觉太复 ...
- Hibernate(Control)
案例:http://blog.csdn.net/jiuqiyuliang/article/details/39380465 对象关系映射框架,它对JDBC进行了轻量级的对象封装,可以使用对象编程思维来 ...