Popup.Child Property

Definition

Gets or sets the content of the Popup control.

C#
[System.ComponentModel.Bindable(true)]
public System.Windows.UIElement Child { get; set; }

Property Value

The UIElement content of the Popup control. The default is null.

Attributes

Examples

The following example shows how to add content to a Popup control.

C#
Popup myPopupWithText = new Popup();
TextBlock textBlock = new TextBlock();
textBlock.Text = "Popup Text";
textBlock.Background = Brushes.Yellow;
myPopupWithText.Child = textBlock;
myStackPanel.Children.Add(myPopup);
XAML
<DockPanel>
  <Popup IsOpen="True">
    <TextBlock Background="Yellow">Popup Text</TextBlock>
  </Popup>
</DockPanel>

Remarks

Content Model: The Child property is the only content property for the Popup control. A Popup can only have one UIElement as a child, but that child can contain complex embedded content. For example, the child can be a StackPanel that contains an Image, text, and other types of controls.

When content is added to a Popup control, the Popup control becomes the logical parent to the content. Similarly, the Popup content is considered to be the logical child of the Popup. The child content is not added to the visual tree that contains the Popup control. Instead, the child content is rendered in a separate window with its own visual tree when the IsOpen is set to true.

Dependency Property Information

Item Value
Identifier field ChildProperty
Metadata properties set to true None

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10