Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
4155
How do i make XamComboEditor open to the bottom instead of the top and make checkbox items line up?
posted

I'm trying to use a XamComboEditor along with  AllowMultipleSelection="True" and CheckBoxVisibility="Visible", but the choices always open/appear above the control.  How do i make it behave like every other combobox and open below the control?  Also, why are the items i can select from checkboxes not lined up as in the WPF Sample Browser?  Lastly, why does the arrows in the vertical scroll bar not work in the selected items?  I can only scroll by dragging down.  Here's my XAML:

<ig:XamComboEditor ItemsSource="{Binding SubClasses}"  EmptyText="" SelectedItem="{Binding SelectedSubClass}" DisplayMemberPath="SubClassDescription"
                                       IsEditable="False" AllowMultipleSelection="True" CheckBoxVisibility="Visible" >
                        <i:Interaction.Behaviors>
                            <b:XamComboEditorSelectedItemsBehavior SelectedItems="{Binding SelectedSubClasses}"/>
                        </i:Interaction.Behaviors>
                    </ig:XamComboEditor>