MultiColumnComboBox: DropDownMinWidth property is not respected until resize if DropDownWidth is not set
The current workaround is to handle the Loaded event like so:
private void RadMultiColumnComboBox_Loaded(object sender, RoutedEventArgs e)
{
this.combo.DropDownWidth = this.combo.DropDownMinWidth;
}
The fix for this issue will be available with the next LIB (version 2018.3.1224) expected on Monday, December 24.