WPF模版[DataTemplate]使用
摘要:
1 GridViewColumn gvc = new GridViewColumn(); 2 3 // Binding很强大,但是不知道怎么解释。从使用中慢慢体会 4 Binding binding = new Binding(); 5 6 // 绑定到此模版的数据源的属性路径 7 binding.Path = new PropertyPath("SerialNo"); 8 9 // MSDN:描述数据对象的可视结构。10 DataTemplate dtemplate = new DataTemplate();11 12 // 新建一个模版,参数说明这个模版依懒于哪个控件1 阅读全文
posted @ 2012-05-18 18:17 JRoger 阅读(398) 评论(0) 推荐(0) 编辑