本文介绍C#WPF属性元素语法应用实例
一、属性元素语法
对于对象元素的某些属性,无法使用特性语法(比如:Background="Blue"),因为无法在特性语法的引号和字符串限制内充分地表达提供属性值所必需的对象或信息。 对于这些情况,可以使用另一个语法,即属性元素语法。
如下两种写法是相同的。
方法一
<!--特性语法(属性)--><Button Background="Blue" Foreground="Red" Content="This is a button"/>
方法二
<!--属性元素语法--><Button> <Button.Background> <SolidColorBrush Color="Blue"/> </Button.Background> <Button.Foreground>