深圳政协委员钟帆飞诈骗30亿

主持正义

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2012年6月17日

摘要: 缩放起始点,终点。使用A*自动寻路算法,获取路径集合。循环路径集合,放大路径点,使用关键帧动画,每个路径点用100毫秒,设置该时刻的属性(Canvas.Left)值Value。 阅读全文
posted @ 2012-06-17 23:29 jayce80 阅读(215) 评论(0) 推荐(0) 编辑

摘要: 一、 在Silverlight注册一个Javascript脚本对象,并将C#方法暴露出来,就可以了。注册脚本对象:HtmlPage.RegisterScriptableObject("Builder",this);定义脚本成员:[ScriptableMember]public void CreateRect(int width,int height){ Rectangle rect = new Rectangle(); rect.width = width; rect.height = height; rect.Fill = new SolidColorBrush(Colo 阅读全文
posted @ 2012-06-17 14:18 jayce80 阅读(494) 评论(0) 推荐(0) 编辑

摘要: 一、 添加js 元素到前台var jsText = @"jsObject=function(){this.Msg=msg;}jsObject.propotype.Show(this.Msg)";//var jsText = @"jsObject2=function(msg){alert(msg);}"//创建Html元素HtmlElement element = HtmlPage.Document.CreateElement("Script");element.SetAttribute("type","t 阅读全文
posted @ 2012-06-17 13:45 jayce80 阅读(1334) 评论(0) 推荐(0) 编辑

摘要: 设置CookieDateTime expire = DateTime.UtcNow + TimeSpan.FromDays(30);string cookie = string.Formate("{0}={1},expires={2}",key,value,expire)HtmlPage.SetProperty("cookie",cookie);读取Cookie由于读取到的Cookie是一个集合,所以需要遍历它。string result="";string[] cookies = HtmlPage.Document.Cookies. 阅读全文
posted @ 2012-06-17 13:14 jayce80 阅读(246) 评论(0) 推荐(0) 编辑