Back to Devexpress

DxRibbonColorPaletteItem.ValueChanged Event

blazor-devexpress-dot-blazor-dot-dxribboncolorpaletteitem.md

latest1.3 KB
Original Source

DxRibbonColorPaletteItem.ValueChanged Event

Fires after the color palette item’s value changes.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(null)]
[Parameter]
public EventCallback<string> ValueChanged { get; set; }

Parameters

TypeDescription
String

The new color.

|

Remarks

Handle the ValueChanged event to respond to the Value property change.

razor
...
<DxRibbonColorPaletteItem Value="@CurrentColor" ValueChanged="@OnValueChanged" />
...

@code {
    string CurrentColor { get; set; } = "#5BCA35";

    void OnValueChanged(string newValue) {
        CurrentColor = newValue;
        // ...
    }
}

Implements

ValueChanged

See Also

DxRibbonColorPaletteItem Class

DxRibbonColorPaletteItem Members

DevExpress.Blazor Namespace