Is it possible to make the width of the dropped down list of items wider than the xamwebcomboeditor's width?
Hello,
There is not a such public property. However, you can change the control's template in order to specify width of the dropped down list wider than the XamComboEditor's with. Here is an example:
<Border x:Name="RootPopupElement" Height="Auto" MaxHeight="{TemplateBinding MaxDropDownHeight}" HorizontalAlignment="Stretch" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" CornerRadius="3" MinWidth="500">
Regards,
Doychin Dochev
That causes the down arrow button on the right of the XamWebComboEditor to disappear and the dropdown no longer functions.