Aquí hay un enlace a los estilos y plantillas de combobox estándar: http://msdn.microsoft.com/en-us/library/ms752094.aspx.
Usted debe ser capaz de añadir un estilo, similar al siguiente que hace que el cuadro combinado plana (que puede necesitar algún ajuste):
<Style x:Key="CustomComboBox" TargetType="{x:Type ComboBox}">
<Setter Property="HorizontalAlignment" Value="Stretch"/>
<Setter Property="VerticalAlignment" Value="Top"/>
<Setter Property="MinWidth" Value="60"/>
<Setter Property="UIElement.SnapsToDevicePixels" Value="True"/>
<Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Disabled"/>
<Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Auto"/>
<Setter Property="ScrollViewer.CanContentScroll" Value="True"/>
<Setter Property="TextElement.Foreground" Value="Black"/>
<Setter Property="FrameworkElement.FocusVisualStyle" Value="{x:Null}"/>
<Setter Property="BorderBrush" Value="Black"/>
<Setter Property="BorderThickness" Value="1" />
<Setter Property="Background" Value="White" />
</Style>