Skip to main content
A newer version of this page is available.
All docs
V20.2

DxPopup.ChildContent Property

Specifies the pop-up windows’s content.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public RenderFragment ChildContent { get; set; }

Property Value

Type Description
RenderFragment

The pop-up window’s content.

Remarks

Do not use the ChildContent property explicitly. This property is specified when you write the pop-up window’s content directly between the <DxPopup> and </DxPopup> tags.

<DxPopup HeaderText="Header">
      <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris sit amet metus vel nisi blandit tincidunt vel efficitur purus. 
          Nunc nec turpis tempus, accumsan orci auctor, imperdiet mauris. Fusce id purus magna.</p>
</DxPopup>

When you define the HeaderTemplate and/or FooterTemplate, use the Content property to specify the pop-up window’s content.

See Also