Hi,
I am having an issue where my scrollbar on my ComboBox disappears when I add a HeaderTemplate to my ComboBox. The scrollbar does not show even when the number of items in my ComboBox exceeds the height of the dropdown. When I remove the HeaderTemplate, the scrollbar reappears.
<ComboBox.GroupStyle>
<GroupStyle HeaderTemplate="{StaticResource LayerHeaderTemplate}"/>
</ComboBox.GroupStyle>
When I change the ScrollViewer's CanContentScroll Property, the scrollbar appears but I lose the ComboBox default style.
<ComboBox.Style>
<Style TargetType="{x:Type ComboBox}">
<Style.Triggers>
<Trigger Property="IsGrouping"
Value="true">
<Setter Property="ScrollViewer.CanContentScroll"
Value="false"/>
</Trigger>
</Style.Triggers>
</Style>
</ComboBox.Style>
Is there a way to use a HeaderTemplate, maintain ComboBox's default Esri Style, and have the ScrollBar showing?