摘要:
缩放起始点,终点。使用A*自动寻路算法,获取路径集合。循环路径集合,放大路径点,使用关键帧动画,每个路径点用100毫秒,设置该时刻的属性(Canvas.Left)值Value。 阅读全文
摘要:
缩放起始点,终点。使用A*自动寻路算法,获取路径集合。循环路径集合,放大路径点,使用关键帧动画,每个路径点用100毫秒,设置该时刻的属性(Canvas.Left)值Value。 阅读全文
摘要:
一、 在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 阅读全文
摘要:
一、 添加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 阅读全文
摘要:
设置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. 阅读全文
|