TextBoxStyle
The TextBoxStyle property allows you to customize the input area of RadComboBox.
The input area is shown only when the control is in edit mode. This happens when its IsEditable property is set to True.
Controls / RadComboBox / Features
New to Telerik UI for WPF? Download free 30-day trial
The TextBoxStyle property allows you to customize the input area of RadComboBox.
The input area is shown only when the control is in edit mode. This happens when its IsEditable property is set to True.
<telerik:RadComboBox IsEditable="True" SelectedIndex="0">
<telerik:RadComboBox.Items>
<telerik:RadComboBoxItem Content="Item 1" />
<telerik:RadComboBoxItem Content="Item 2" />
<telerik:RadComboBoxItem Content="Item 3" />
</telerik:RadComboBox.Items>
<telerik:RadComboBox.TextBoxStyle>
<!-- If you use NoXaml dlls and implicit styles, set the following property on the Style element - BasedOn="{StaticResource ComboBoxTextBoxStyle}" -->
<Style TargetType="TextBox">
<Setter Property="Background" Value="#3F3F3F" />
<Setter Property="Foreground" Value="#FF8041" />
<Setter Property="FontSize" Value="24" />
<Setter Property="FontFamily" Value="Consolas" />
</Style>
</telerik:RadComboBox.TextBoxStyle>
</telerik:RadComboBox>
Copyright © 2025 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.
Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.