DxRibbonItem.SplitDropDownButton Property
Specifies whether the drop-down button item should be split into two buttons.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
public bool SplitDropDownButton { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
|
Remarks
A ribbon item containing other items displays a drop-down arrow. When a user clicks the item, the ribbon displays a drop-down window and fires the Click event.
Set the SplitDropDownButton
property to true
to split the item into two areas: the main action button and the drop-down arrow.
- When a user clicks the main action button, the ribbon fires the Click event.
- When a user clicks the drop-down button, the ribbon displays drop-down window.
...
<DxRibbonItem Text="Paste"
IconCssClass="rb-icon rb-icon-paste"
SplitDropDownButton="true" >
<DxRibbonItem Text="Copy" />
<DxRibbonItem Text="Cut" />
</DxRibbonItem>
...
See Also