blazor-devexpress-dot-blazor-dot-dxribbonspinedititem-1.md
A ribbon item that displays a spin editor.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public class DxRibbonSpinEditItem<TValue> :
DxRibbonItemBase,
IRibbonSpinEdit<TValue>,
IRibbonGroupItem,
IRibbonGroupElement,
IRibbonElement,
IRibbonNode,
IRibbonInteractiveElement,
IRibbonEditableElement
| Name | Description |
|---|---|
| TValue |
The data type.
|
The spin editor item displays numeric values. A user can change the editor’s value in the following ways:
Use the Value property to specify the editor’s value or to bind the value to a data source object. Handle the ValueChanged event to respond to the value change.
...
<DxRibbonSpinEditItem Value="@CurrentFontSize"
ValueChanged="@((int newSize) => OnFontSizeChanged(newSize))"
MinValue="6"
MaxValue="32"
Increment="2"
Width="100px"/>
...
@code {
private int CurrentFontSize { get; set; } = 8;
void OnFontSizeChanged(int newSize) {
// Your code
}
}
IRibbonSpinEdit<TValue>
Object ComponentBase DevExpress.Blazor.Ribbon.Internal.DxRibbonNodeBase DxRibbonElementBase DxRibbonItemBase DxRibbonSpinEditItem<TValue>
See Also