/
hlebusheck
/
notes
Обзор
Документация
Войти
/
hlebusheck
/
notes
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
Notes.Wpf/Controls/Converters/SingleLineTextConverter.cs
22 строки
691 B
Hlebusheck
Add export and import
14 ноя 2022, 23:35
14 ноя 2022, 23:35
fd08b87
Код
Авторство
О чём код?
using System; using System.Windows.Data; namespace Notes.Controls.Converters { public class SingleLineTextConverter : IValueConverter { public static SingleLineTextConverter Instance { get; } = new(); public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { string text = (string)value; text = text.Replace(Environment.NewLine, " "); return text; } public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw new NotImplementedException(); } } }