上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 39 下一页
摘要: 多线程对开发和用户体验的重要性不言而喻,Silverlight BCL 几乎提供了完整的 Thread Class。1. Dispatcher和 WPF / WinForm 一样,我们只能在 UI Thread 中更新显示控件属性。多线程编码时,需要借助于 Dispatcher。private void Button_Click(object sender, RoutedEventArgs e){new Thread(() ={this.Dispatcher.BeginInvoke(() = { this.TextBlock1.Text = DateTime.Now.ToString(); 阅读全文
posted @ 2009-07-27 16:20 GT_Andy 阅读(161) 评论(0) 推荐(0) 编辑
摘要: Silverlight 支持使用 HTTP/HTTPS (System.Net.WebClient 等) 和 Socket (System.Net.Sockets) 两种方式访问远程服务器,但基于安全原因,对这些网络访问制定了严格的安全策略。1. HTTP/HTTPS 访问策略(1) 始终允许同域调用。同域是指调用必须使用同一子域、协议和端口,这是出于安全原因以及防止跨域伪造。(2) Silverlight 支持访问包含跨域策略文件的网站服务。跨域访问时,Silverlight Application 首先在目标 Web 服务的根路径查找 Silverlight 跨域策略文件 (clienta 阅读全文
posted @ 2009-07-27 16:06 GT_Andy 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 斯蒂夫•保罗•乔布斯(Steve Paul Jobs,1955年2月24日出生-)是蘋果電腦的現任首席執行長(首席执行官)兼創辦人之一。同時也是Pixar動畫公司的董事長及首席執行長。这是他2005在斯坦福大学做的毕业演讲。。。很鼓舞人。。。也许精彩就在平实之间。。。Thank you.I'm honored to be with you today for your commencement from one of the finest universities in the world. Truth be told, I never graduated from college, and 阅读全文
posted @ 2009-07-25 16:36 GT_Andy 阅读(151) 评论(0) 推荐(0) 编辑
摘要: .NET CF's HttpWebRequest automatically sets up a GPRS connection for web requests/web services when a wired/wi-fi connection is not available. Therefore, when you do a web request or consume a web service, developers do not need special coding to handle the GPRS connection case. This does not apply 阅读全文
posted @ 2009-07-24 16:09 GT_Andy 阅读(211) 评论(0) 推荐(0) 编辑
摘要: How does the application work?The ChatHost accepts connections from all Silverlight clients. Silverlight calls a login method on the ChatHost and the ChatHost holds a list of all connected clients.When a Silverlight clients sends a message to the chatbox, the ChatHost will broadcast this message to 阅读全文
posted @ 2009-07-24 15:51 GT_Andy 阅读(190) 评论(0) 推荐(0) 编辑
摘要: OpenSource Porject:1. Siverlight ToolKit (OpenSource)http://www.codeplex.com/Silverlight 补充: Silverlight Toolkit March 2009 changes2. GOA ToolKit for Silverlight (OpentSource)http://www.netikatech.com/downloads3. Silverlight Contrib (OpenSource)http://silverlightcontrib.codeplex.com/4. Silverlight E 阅读全文
posted @ 2009-07-23 13:10 GT_Andy 阅读(156) 评论(0) 推荐(0) 编辑
摘要: Looking for the same application but using WCF Duplex binding instead of sockets? Check out the Silverlight Chat application with WCF Duplex Binding.My goal was to build a silverlight chat application. Silverlight will be my client, and I had to build a host, to host the chatroom. The host needs to 阅读全文
posted @ 2009-07-23 13:06 GT_Andy 阅读(743) 评论(0) 推荐(0) 编辑
摘要: 主页BlogsEast's blogMicrosoft Expression 3 新功能简介Posted 周二, 07/14/2009 - 23:36 by East 2009年7月10日,微软公司在旧金山宣布推出Microsoft Expression 3,这是一套面向强大平台的高级工具组,用于在Web上创建并交付富互联网应用程序(RIA)和媒体体验。在设计与开发者的工作中,Microsoft Expression Blend中的SketchFlow和Microsoft Expression Web中的SuperPreview这样的新功能,在可用性和提高生产力方面取得了长足的进步。Expre 阅读全文
posted @ 2009-07-22 14:14 GT_Andy 阅读(1099) 评论(0) 推荐(0) 编辑
摘要: Flash 与 Silverlight 终极大比拼COMSHARP CMS写道:自 Silverlight 1.0 发布以来,Web 开发与设计者们关于该选择 Flash 和 Silverlight 的争论便开始了,在成熟的 Flash 面前,Silverlight 面临着如何赢得市场的难题。然而 Silverlight 中包含了一些开发设计者们一直希望 Flash 能拥有的功能,诸如SEO,本文对 Flash 和 Silverlight 的技术细节进行了详尽的对比。动画功能Flash 使用基于帧的动画模式,在逐帧动画模式中,我们为每个帧创建对象并生成动画序列。比如你想让一个对象在3秒内穿过屏 阅读全文
posted @ 2009-07-22 12:27 GT_Andy 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 相关文章: 另类角度看RIA Flex on Rails 安装 关于Flex. 推荐圈子: flex 更多相关推荐 我个人工作中有过web、RCP、RIA等方面的经历,对图形界面技术以及其趋势,有过深入的思考,这里写下我的见解,欢迎大家讨论。 下面我们将讨论CS ajax RCP RIA等 一、过去技术总结 CS技术:CS技术的C部分,本质上是用某种语言,调用本地widget作为图形用户显示界面,并用某种语言相应事件处理和业务处理。 BS技术:BS技术的B部分,本质上是用HTML,调用(通过HTML解释器)容器内的widget作为图形用户界面,并且用某种语言相应事件处理和业务处理。 CS技术 阅读全文
posted @ 2009-07-21 19:53 GT_Andy 阅读(248) 评论(0) 推荐(0) 编辑
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 39 下一页