Hi,
There is an issue with MultiSelectionComboBox: if I want to apply ItemStringFormat, it is only gets applied on items in dropdown, but not on items in combobox's total text field. Please, take a look at example screenshot

Steps to reproduce:
- Create ViewModel
public class ViewModel: INotifyPropertyChanged
{
private ObservableCollection<DateTime> _dateTimes = new ObservableCollection<DateTime>() {DateTime.Now, new DateTime(2019, 4, 23)};
public ObservableCollection<DateTime> DateTimes
{
get => _dateTimes;
set
{
_dateTimes = value;
OnPropertyChanged(nameof(DateTimes));
}
}
[field: NonSerialized] public event PropertyChangedEventHandler PropertyChanged;
private void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
- Add MultiSelectionComboBox control to XAML and bind it to ViewModel
<timsWpfControls:MultiSelectionComboBox SelectionMode="Multiple" ItemsSource="{Binding DateTimes}" ItemStringFormat="{}{0:D}"/>
- Select all items and see the result
Hi,
There is an issue with MultiSelectionComboBox: if I want to apply ItemStringFormat, it is only gets applied on items in dropdown, but not on items in combobox's total text field. Please, take a look at example screenshot
Steps to reproduce: