나는 파티에 늦었지만 .. 이것은 내가 한 방식입니다 (내 ItemSources는 형식이 지정되지 않은 일반 문자열이며 아무것도 'convertBack'할 필요가 없습니다)
public class SpaceToLineBreakConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return (!String.IsNullOrEmpty(value as string))
? new Regex(@"\s").Replace(value as string, "\n")
: value;
}
public object ConvertBack(object value, Type targetType, object parameter,System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}