2013年11月29日

WPF 双向绑定

摘要: 定义类: 类实现INotifyPropertyChanged 接口 1 using Microsoft.Win32; 2 using System.ComponentModel; 3 using System.Windows; 4 5 namespace WPFEntity 6 { 7 public class Person : INotifyPropertyChanged 8 { 9 private int age;10 11 public event PropertyChangedEventHandler PropertyChanged;1... 阅读全文

posted @ 2013-11-29 16:16 天蝎座筷子 阅读(421) 评论(0) 推荐(0) 编辑

编程思想之一

摘要: 编程思想:编程时要对“不可能发生的情况” 做处理!这是一个编程的好习惯。 如: 在编写登陆时 1 public void LogOn(string userName) 2 { 3 DataSet dataSet = SqlHelper.ExecuteDataSet( 4 "select * from users where username=@UserName", new SqlParameter("@UserName", userName)); 5 DataTable tabl... 阅读全文

posted @ 2013-11-29 15:33 天蝎座筷子 阅读(143) 评论(0) 推荐(0) 编辑

导航