在 HTML5 中, 可以使用 data- 属性来表示用户数据,这些数据甚至可以是 JSON 格式的数据,对 Web 前端开发带来很大的方便. 在 MVC 的 Razor 中,可以使用匿名对象来生成定制的属性,不过,这样的属性可不能通过 Razor 的语法检查. new{ data-id= 1 } 编译器会直接报告错误. The name 'data' does not exist in the current context ,原因很简单,把 - 号当作运算符了.其实,HtmlHelp…
依赖属性 ".NET properties are nothing more than syntactic sugar over set and get methods." 我们知道.NET的属性只不过是get/set方法的语法糖衣. "Dependency properties are the workhorse of WPF. This infrastructure provides for many of WPF's features, such as data bin…