DxButton.RenderStyleMode Property
Specifies the button’s color filling type.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(ButtonRenderStyleMode.Contained)]
[Parameter]
public ButtonRenderStyleMode RenderStyleMode { get; set; }
Property Value
| Type | Default | Description |
|---|---|---|
| ButtonRenderStyleMode | Contained | A ButtonRenderStyleMode enumeration value. |
Available values:
| Name | Description |
|---|---|
| Contained | The button is filled with the style color. |
| Outline | The button’s text and borders are colored. |
| Text | The button’s text is colored. |
Remarks
Use the following properties to control <DxButton>‘s style:
- RenderStyle — Specifies the button’s predefined style.
RenderStyleMode— Specifies the button’s color filling type.
<DxButton RenderStyle="ButtonRenderStyle.Primary" RenderStyleMode="ButtonRenderStyleMode.Contained" Text="Primary" />

See Also