I’m using the CheckComboBox (from Extended WPF Toolkit) in an app, and I’d like to make the “textBox” where it shows the selected items a bit wider, (in fact, I want it to fill all the CheckComboBox) but I’m don’t have any idea about how to apply the styles.

Any help?
Thanks!
Current code
<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit">
<!-- ... -->
<Label Content="Locale: "/>
<xctk:CheckComboBox Name="LocaleSelector" ItemsSource="{Binding Locales}" ValueMemberPath="Id" SelectedValue="{Binding SelectedLocales}" Margin="5 2 0 2" />
I finally got it placing this into the UserControl.Resources, and applying the style to the CheckComboBox