This question is locked. New answers and comments are not allowed.
Hello,
I have drop down box defined as:
<tk:RadAutoCompleteBox Name="Members" AutoCompleteMode="Suggest" MaxDropDownHeight="500" MinDropDownWidth="400" SelectionMode="Single" TextSearchMode="Contains" TextSearchPath="NoLastNameFirstName" Width="300"> <tk:RadAutoCompleteBox.DropDownItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> <TextBlock Text="{Binding Section.Code}" Width="50" /> <TextBlock Text="{Binding NoText}" Width="70" /> <TextBlock Text="{Binding LastNameFirstName}" /> </StackPanel> </DataTemplate> </tk:RadAutoCompleteBox.DropDownItemTemplate> <tk:RadAutoCompleteBox.FilteringBehavior> <tk:AsyncFilteringBehavior /> </tk:RadAutoCompleteBox.FilteringBehavior></tk:RadAutoCompleteBox>
As you can see, the Width is set to 300 and, as the drop down is not wide enough to display all the information, the MinDropDownWidth is set to 400.
Unfortunately, the result is not what's expected: instead of making the drop down wider, it still has a width of 300, but is just moved to the right by 100!