提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
转帖|其它|编辑:郝浩|2010-12-14 15:45:23.000|阅读 609 次
概述:要实现JavaScript调用Silverlight程序里面的托管代码,需要先在应用程序的启动(Application_Startup)事件里注册要进行访问的对象,而要从Silverlight的托管代码里访问HTML页面对象或者页面中的JavaScript,使用HtmlPage的Document/HtmlElement和HtmlWindow即可。本文就以例子来说明两者相互访问的方法,希望对大家有帮助。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
要实现JavaScript调用Silverlight程序里面的托管代码,需要先在应用程序的启动(Application_Startup)事件里注册要进行访问的对象,而要从Silverlight的托管代码里访问HTML页面对象或者页面中的JavaScript,使用HtmlPage的Document/HtmlElement和HtmlWindow即可。
下面,我们就以例子来说明两者相互访问的方法,代码里面有很详细的注释,这里不再累述。
Page.xaml:
<UserControlx:Class="SilverlightApplication1.Page"
xmlns="//schemas.microsoft.com/client/2007"
xmlns:x="//schemas.microsoft.com/winfx/2006/xaml"
Width="400"Height="300">
<Gridx:Name="LayoutRoot"Background="White">
<CanvasCanvas.Top="20">
<TextBlockCanvas.Top="10"Canvas.Left=
"20">请输入您的姓名:</TextBlock>
<TextBoxx:Name="UserInput"Width=
"200"Height="30"Canvas.Top="40"Canvas.Left="20"></TextBox>
<TextBlockx:Name="Msg"Canvas.Top=
"90"Canvas.Left="20"Foreground="Navy"FontSize="36"></TextBlock>
<ButtonClick="Button_Click"Content="单击我"FontSize="24"Width="160"Height=
"60"x:Name="BtnTest"Canvas.Top="160"Canvas.Left="20"></Button>
</Canvas>
</Grid>
</UserControl>
Page.xaml.cs:
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Windows;
usingSystem.Windows.Controls;
usingSystem.Windows.Documents;
usingSystem.Windows.Input;
usingSystem.Windows.Media;
usingSystem.Windows.Media.Animation;
usingSystem.Windows.Shapes;
usingSystem.Windows.Browser;
namespaceSilverlightApplication1
{
public
partial
classPage : UserControl
{
publicPage()
{
InitializeComponent();
}
private
voidButton_Click(objectsender, RoutedEventArgs e)
{
stringUserInputContent=
this.UserInput.Text;
if(UserInputContent.Equals(String.Empty))
{
UserInputContent=
"Hello Silverlight World!";
}
else
{
UserInputContent=
"你好,"
+UserInputContent;
}
HtmlWindow win=HtmlPage.Window;
this.Msg.Text=UserInputContent;
win.Alert("Silverlight 里面弹出的对话框。"
+UserInputContent);
//执行页面中的js函数:
win.Eval("getArrayTest()");
Object[] args={"将此参数传递给 js 函数"};
win.Invoke("getArrayTest", args);
//如果页面中的值
HtmlDocument doc=HtmlPage.Document;
doc.GetElementById("UserName").SetAttribute("value",this.UserInput.Text);
}
[ScriptableMember()]
public
stringInterInvole()
{
stringusername=
HtmlPage.Document.GetElementById("UserName").GetAttribute("value");
this.UserInput.Text=username;
this.Msg.Text=
"您输入了:"
+username;
return
"你从js脚本中调用了 Silverlight 里面的方法。";
}
}
}
App.xaml.cs:
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Windows;
usingSystem.Windows.Controls;
usingSystem.Windows.Documents;
usingSystem.Windows.Input;
usingSystem.Windows.Media;
usingSystem.Windows.Media.Animation;
usingSystem.Windows.Shapes;
usingSystem.Windows.Browser;
namespaceSilverlightApplication1
{
public
partial
classApp : Application
{
publicApp()
{
this.Startup+=
this.Application_Startup;
this.Exit+=
this.Application_Exit;
this.UnhandledException+=
this.Application_UnhandledException;
InitializeComponent();
}
private
voidApplication_Startup(objectsender, StartupEventArgs e)
{
//Load the main control
Page p=
newPage();
HtmlPage.RegisterScriptableObject("SilverlightApplicationExample", p);
//请注意这里的定义方法,如果这里的p写成 new Page(),则Javascript基本不能给 UserInput 赋值!
this.RootVisual=p;
}
private
voidApplication_Exit(objectsender, EventArgs e)
{
}
private
voidApplication_UnhandledException
(objectsender, ApplicationUnhandledExceptionEventArgs e)
{
}
}
}
SilverlightApplication1TestPage.aspx:
<%@ Page Language="C#"AutoEventWireup="true"
%>
<%@ Register Assembly="System.Web.Silverlight"Namespace=
"System.Web.UI.SilverlightControls"TagPrefix="asp"
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="//www.w3.org/1999/xhtml">
<headrunat="server">
<title>Silverlight 2托管代码与Javascript交互的例子</title>
<scripttype="text/javascript">
//<!{CDATA[
//定义全局变量:
vartestVar=
"孟宪会";
//定义全局函数:
functiongetArrayTest()
{
if(arguments.length>
0)
{
alert("js 对话框:您传递了参数。"
+arguments[0]);
return arguments[0];
}
else
{
alert("js 对话框:无参数调用。");
return
"js 函数返回值";
}
}
functionSetUserName()
{
alert(SilverlightPlugin.Content.SilverlightApplicationExample.InterInvole());
}
//定义Silverlight插件对象
varSilverlightPlugin=
null;;
functionpluginLoaded(sender)
{
SilverlightPlugin=sender.get_element();
}
//]]>
</script>
</head>
<bodystyle="height: 100%; margin: 0;">
<formid="form1"runat="server">
<divstyle="border: 2px solid #EEE; margin: 20px;padding:20px">
请输入你的名字:<inputid="UserName"type="text"value=""
/>
<inputtype="button"onclick="SetUserName()"value="将名字传递到 Silverlight"
/>
</div>
<br/>
<divstyle="border: 2px solid #EEE;margin: 20px;">
<asp:ScriptManagerID="ScriptManager1"runat="server">
</asp:ScriptManager>
<asp:SilverlightID="Xaml1"runat="server"OnPluginLoaded=
"pluginLoaded"Source="~/ClientBin/SilverlightApplication1.xap"Version="2.0"
Width="400px"Height="300px"
/>
</div>
</form>
</body>
</html>
运行结果:
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
文章转载自:网络转载面对“数字中国”建设和中国制造2025战略实施的机遇期,中车信息公司紧跟时代的步伐,以“集约化、专业化、标准化、精益化、一体化、平台化”为工作目标,大力推进信息服务、工业软件等核心产品及业务的发展。在慧都3D解决方案的实施下,清软英泰建成了多模型来源的综合轻量化显示平台、实现文件不失真的百倍压缩比、针对模型中的大模型文件,在展示平台上进行流畅展示,提升工作效率,优化了使用体验。
本站的模型资源均免费下载,登录后即可下载。模型仅供学习交流,勿做商业用途。
本站的模型资源均免费下载,登录后即可下载。模型仅供学习交流,勿做商业用途。
本站的模型资源均免费下载,登录后即可下载。模型仅供学习交流,勿做商业用途。
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢