ContentControl.HasContent 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,這個值表示 ContentControl 是否包含內容。
public:
property bool HasContent { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool HasContent { get; }
[<System.ComponentModel.Browsable(false)>]
member this.HasContent : bool
Public ReadOnly Property HasContent As Boolean
屬性值
如果 ContentControl 有內容則為 true
,否則為 false
。 預設值是 false
。
- 屬性
範例
下列範例示範如何使用 HasContent 屬性來判斷內容控制項是否包含內容。
void OnClick(object sender, RoutedEventArgs e)
{
if (contCtrl.HasContent == true)
{
MessageBox.Show("contCtrl has content");
}
}
Private Sub OnClick(ByVal Sender As Object, ByVal e As RoutedEventArgs)
If (contCtrl.HasContent = True) Then
MessageBox.Show("contCtrl has content")
End If
End Sub
備註
Content如果屬性為 null
,這個屬性會傳 false
回 。
相依性屬性資訊
識別碼欄位 | HasContentProperty |
設定為 的中繼資料屬性 true |
無 |