This is a migrated thread and some comments may be shown as answers.

MinDropDownWidth

1 Answer 71 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
David Brenchley
Top achievements
Rank 1
David Brenchley asked on 15 Jun 2011, 06:15 PM
I'm not seeing the MinDropDownWidth property on the RadComboBox in WPF.  Documentation says it should be there.  I need to set this to eliminate the jarring back and forth size of the dropdown as the user scrolls through the items.  How is this to be done?

1 Answer, 1 is accepted

Sort by
0
Accepted
Dani
Telerik team
answered on 16 Jun 2011, 08:10 AM
Hi David,

The MinDropDownWidth property is read-only and cannot be set. I am sorry that the documentation is incorrect on this matter, it was updated immediately and will be up to date for the next LIB.

What you can do it set the MinWidth on the ItemsPanel. This should have the same visual effect. For example:

<telerik:RadComboBox.ItemsPanel>
                <ItemsPanelTemplate>
                    <VirtualizingStackPanel MinWidth="240" />
                </ItemsPanelTemplate>
</telerik:RadComboBox.ItemsPanel>

I hope this will be helpful.


All the best,
Dani
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
ComboBox
Asked by
David Brenchley
Top achievements
Rank 1
Answers by
Dani
Telerik team
Share this question
or