blazor-devexpress-dot-blazor-dot-dxdropdownbuttonbase-f5b20d64.md
Specifies whether the drop-down toggle icon is visible.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(null)]
[Parameter]
public bool? DropDownToggleVisible { get; set; }
| Type | Default | Description |
|---|---|---|
| Nullable<Boolean> | null |
true if the toggle icon is visible; otherwise, false.
|
Set the DropDownToggleVisible property to false to hide the drop-down toggle icon. The following components implement the DropDownToggleVisible property:
DxDropDownButtonA toggleable button that reveals a drop-down element with a list of commands or custom content.DxSplitButtonA composite control that consists of a primary button and a toggleable secondary button that reveals a drop-down element.DxDropDownButtonItemDefines a drop-down list item. Used in DxDropDownButton or DxSplitButton.
To customize toggle appearance, use the DropDownToggleCssClass property.
The following code snippet hides the drop-down toggle in the DxDropDownButton component:
<DxDropDownButton Text="Blazor Components"
RenderStyleMode="ButtonRenderStyleMode.Outline"
DropDownToggleVisible="false">
<Items>
<DxDropDownButtonItem Text="Documentation"
NavigateUrl="https://docs.devexpress.com/Blazor/400725/blazor-components" />
<DxDropDownButtonItem Text="Demos"
NavigateUrl="https://demos.devexpress.com/blazor/" />
</Items>
</DxDropDownButton>
See Also