內容屬性

大多數WPF類都指定了一個屬性Content,該屬性可以被設置爲XML元素中的任何內容。這個屬性叫內容屬性,通過它,讓XAML呈現變得更簡單。

看看以下兩種方式:

<Button Width="40" Height="40">
OK
</Button>

<Button Width="40" Height="40" Content="OK">
</Button>

使用內容屬性還可實現更復雜的Button:

<Button Width="40" Height="40" >
<Button.Content>
<Rectangle Width="20" Height="20" Fill="Yellow"/>
</Button.Content>
</Button>

以上XAML代碼等價於:

<Button Width="40" Height="40" >
<Rectangle Width="20" Height="20" Fill="Yellow"/>
</Button>

內容屬性並不一定命名爲Content,ComboBox、ListBox、TabControl這些類使用Items屬性作爲它們的內容屬性。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章