摘要: Wilma项目中的例子:View Code 1 16 17 18 19 20 21 其中TargetNullValue和Binding的Path指定的后台property做对应,当后台pro... 阅读全文
posted @ 2013-05-09 16:14 若愚Shawn 阅读(598) 评论(0) 推荐(0) 编辑
摘要: http://broadcast.oreilly.com/2010/09/understanding-c-equality-iequa.html 阅读全文
posted @ 2013-05-09 09:45 若愚Shawn 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 赋值1:View Code 1 using System; 2 3 class ComplexNumber 4 { 5 public double Real { get; set; } 6 public double Imaginary { get; set; } 7 8 public override string ToString() 9 {10 return String.Format("{0}{1}{2}i", 11 Real, 12 Imaginary >= 0... 阅读全文
posted @ 2013-05-09 09:06 若愚Shawn 阅读(333) 评论(0) 推荐(0) 编辑