blazor-devexpress-dot-blazor-dot-dxmessagebox-8780fefd.md
Specifies the message box title.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(null)]
[Parameter]
public string Title { get; set; }
| Type | Default | Description |
|---|---|---|
| String | null |
The message box title.
|
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;
}
See Also