DxRibbonColorPaletteItem.Value Property
Specifies the selected color value.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(null)]
[Parameter]
public string Value { get; set; }
Property Value
| Type | Default | Description |
|---|---|---|
| String | null | The selected color. |
Remarks
Use the Value property to specify the selected color value or to bind the value to a data source object. You can use the @bind attribute to bind the Value property to a data field. Refer to the following topic for details: Two-Way Data Binding.
...
<DxRibbonColorPaletteItem @bind-Value="@CurrentColor" />
...
@code {
string CurrentColor { get; set; } = "#5BCA35";
}
To respond to the value change, handle the ValueChanged event.
Implements
See Also