New to Telerik UI for Blazor? Start a free 30-day trial

DropDownButton Appearance

Updated on Sep 3, 2026

This article describes the declarative settings of the DropDownButton component, which affect the styling and appearance of the primary button.

The DropDownButton provides the same appearance parameters as the regular Button component:

Setting Parameter Values

The examples in this article use reflection to show all possible values of the DropDownButton parameters. In a real-world scenario, you can use two options to set the desired parameter values:

  • Use the static class members in the ThemeConstants.DropDownButton namespace. This is the easier and recommended approach.
  • Set the actual string values directly.

The following two configurations will produce the same result.

Two ways to set DropDownButton appearance parameters

Example
View Source
Loading ...

FillMode

The FillMode parameter controls if the primary button of the DropDownButton component will have a background and borders. The setting also affects the component's hover state. To set the parameter value, use the string members of the static class ThemeConstants.DropDownButton.FillMode.

FillMode Class MemberString Value
Solid (default)"solid"
Flat"flat"
Outline"outline"
Link"link"

DropDownButton FillMode example

Example
View Source
Loading ...

Rounded

The Rounded parameter affects the border-radius CSS styles of the DropDownButton's primary button. To set the parameter value, use the string members of the static class ThemeConstants.DropDownButton.Rounded.

Rounded Class MemberString Value
Small"sm"
Medium (default)"md"
Large"lg"
Full"full"

DropDownButton Rounded example

Example
View Source
Loading ...

Size

The Size parameter can change some dimensions of the DropDownButton's primary button, such as height, margins, or paddings. Possible values are the string members of the static class ThemeConstants.DropDownButton.Size.

Size Class MemberString Value
Small"sm"
Medium (default)"md"
Large"lg"

DropDownButton Size example

Example
View Source
Loading ...

ThemeColor

The ThemeColor parameter sets the background and text color of the DropDownButton's primary button from a set of predefined options. Use the string members of the static class ThemeConstants.DropDownButton.ThemeColor.

ThemeColor Class MemberString Value
Base (default)"base"
Primary"primary"
Secondary"secondary"
Tertiary"tertiary"
Info"info"
Success"success"
Warning"warning"
Error"error"
Inverse"inverse"

DropDownButton ThemeColor example

Example
View Source
Loading ...

ThemeBuilder

To take full control over the appearance of the Telerik UI for Blazor components, you can create your own styles by using ThemeBuilder.

ThemeBuilder is a web application that enables you to create new themes and customize existing ones. Every change that you make is visualized almost instantly. Once you are done styling the UI components, you can export a ZIP file with the styles for your theme and use them in your Blazor app.

Next Steps

See Also