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>

Parents
  • 138253
    Offline posted

    Hello Travis,

     

    Thank you for your post. I have been looking into it and I created a sample project for you following your scenario and everything seems to work ok on my side. If the sample doesn’t satisfies all your needs feel free to modify it, so it reproduces your behavior and send it back to me for further investigation.

     

    Looking forward for your reply.

    XamComboEditorMultipleSelection.zip
Reply Children