摘要: select MAX(age) from T_Studentselect MIN(age) from T_Studentselect MAX(age) as maxage, MIN(age) as minage, AVG(age), COUNT(*) from T_Studentselect COU... 阅读全文
posted @ 2015-09-07 21:46 莫青铜 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 数据绑定基础Slider:进度条写一个数据绑定的类: class Person { }后台: Person p1 = new Person(); txtName.DataContext = p1; txtAge.DataContext = p1;前端: <TextBox Text = ... 阅读全文
posted @ 2015-09-07 13:23 莫青铜 阅读(154) 评论(0) 推荐(0) 编辑