Back to Devexpress

DxPopupBase.ShowHeader Property

blazor-devexpress-dot-blazor-dot-dxpopupbase-91b6a827.md

latest1.8 KB
Original Source

DxPopupBase.ShowHeader Property

Specifies whether the Popup displays the header.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(true)]
[Parameter]
public bool ShowHeader { get; set; }

Property Value

TypeDefaultDescription
Booleantrue

true to display the header; otherwise, false.

|

Remarks

The Popup consists of the body and the header with the Close button. Disable the ShowHeader option to hide the header.

razor
<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

DxPopupBase Class

DxPopupBase Members

DevExpress.Blazor Namespace