blazor-devexpress-dot-blazor-dot-dxpopupbase-91b6a827.md
Specifies whether the Popup displays the header.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(true)]
[Parameter]
public bool ShowHeader { get; set; }
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true to display the header; otherwise, false.
|
The Popup consists of the body and the header with the Close button. Disable the ShowHeader option to hide the header.
<div @onclick="@(() => PopupVisible = true)">
<p>CLICK TO SHOW A POP-UP WINDOW</p>
</div>
<DxPopup @bind-Visible="@PopupVisible"
BodyText="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."
ShowHeader="false"
ShowFooter="true">
<FooterContentTemplate>
<DxButton RenderStyle="ButtonRenderStyle.Primary" Text="OK"
Click="@context.CloseCallback" />
</FooterContentTemplate>
</DxPopup>
@code {
bool PopupVisible { get; set; } = false;
}
For additional information about Popup customization, refer to the following help topic: Content and Appearance.
See Also