blazor-devexpress-dot-blazor-dot-dxmessagebox-b47b007b.md
Specifies the message box text.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(null)]
[Parameter]
public string Text { get; set; }
| Type | Default | Description |
|---|---|---|
| String | null |
The message box text.
|
Use the Text property to specify the message box text:
<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