11 2011 档案
摘要:silverlight: ///<summary> /// Silverlight 创建cookie ///</summary> DateTime expries = DateTime.UtcNow + TimeSpan.FromDays(1); string cookie = string.Format("{0}={1};expries={2}", "username",Value,expries); HtmlPage.Document.SetProperty...
阅读全文
摘要:http://expression.microsoft.com/en-us/ee942883.aspx
阅读全文
摘要:首先 xaml前台image的source是用string表示的如:<image source="1.jpg"/>想当然地以为source="{Binding imagesource}",imagesource也是必须是string,结果闹了我一个下午。给后来人留点脚印,想想前者探索的艰辛啊。。首先看看这段代码<UserControl xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schem
阅读全文