DxRibbonColorPaletteItem.ValueChanged Event
Fires after the color palette item’s value changes.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
public EventCallback<string> ValueChanged { get; set; }
Parameters
Type | Description |
---|---|
String | The new color. |
Remarks
Handle the ValueChanged
event to respond to the Value property change.
...
<DxRibbonColorPaletteItem Value="@CurrentColor" ValueChanged="@OnValueChanged" />
...
@code {
string CurrentColor { get; set; } = "#5BCA35";
void OnValueChanged(string newValue) {
CurrentColor = newValue;
// ...
}
}
See Also