| 123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Globalization;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Data;
- namespace TeamAAS_VP.ValueConverter
- {
- public class StringFormatConverter : IValueConverter
- {
- public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
- {
- var formatString = parameter as string;
- if (string.IsNullOrEmpty(formatString))
- return null;
- return string.Format(culture, formatString, value);
- }
- public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
- {
- return Binding.DoNothing;
- }
- }
- }
|