KimhillZhang  

2012年3月26日

摘要: 1、XAML:<TextBox Name="textbox1"></TextBox>cs: public class Customer { public string Name { get;set;} } Customer customer = new Customer() { Name = "Zhangjinshan" }; Binding bind = new Binding(); bind.Source = customer; bind.Path = new PropertyPath("Name"); t 阅读全文
posted @ 2012-03-26 09:32 KimhillZhang 阅读(833) 评论(0) 推荐(0) 编辑