Skip to main content
All docs
V25.1
  • DxMessageBox.Title Property

    Specifies the message box title.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(null)]
    [Parameter]
    public string Title { get; set; }

    Property Value

    Type Default Description
    String null

    The message box title.

    Remarks

    Use the Title property to specify the message box title:

    <DxButton Text="Show Alert" Click="@(() => MessageBoxVisible = true)" />
    
    <DxMessageBox @bind-Visible="MessageBoxVisible"
                  Title="Error"
                  Text="Unable to process the request. Please try again later or contact support."
                  OkButtonText="Contact Support"
                  CancelButtonText="Try Later"
                  RenderStyle="MessageBoxRenderStyle.Danger"
                  Type="MessageBoxType.Confirmation"/>
    @code {
        bool MessageBoxVisible { get; set; } = false;
    }
    

    Message Box

    Run Demo

    See Also