ContentControl.HasContent Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether the ContentControl contains content.
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
Property Value
true
if the ContentControl has content; otherwise false
. The default value is false
.
- Attributes
Examples
The following example shows how to use the HasContent property to determine whether a content control contains content.
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
Remarks
If the Content property is null
, this property returns false
.
Dependency Property Information
Identifier field | HasContentProperty |
Metadata properties set to true |
None |
Applies to
שתף איתנו פעולה ב- GitHub
ניתן למצוא את המקור לתוכן זה ב- GitHub, שם ניתן גם ליצור ולסקור בעיות ולמשוך בקשות. לקבלת מידע נוסף, עיין במדריך התורמים שלנו.