StringFormatConverter.cs 765 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Globalization;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows.Data;
  8. namespace TeamAAS_VP.ValueConverter
  9. {
  10. public class StringFormatConverter : IValueConverter
  11. {
  12. public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
  13. {
  14. var formatString = parameter as string;
  15. if (string.IsNullOrEmpty(formatString))
  16. return null;
  17. return string.Format(culture, formatString, value);
  18. }
  19. public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
  20. {
  21. return Binding.DoNothing;
  22. }
  23. }
  24. }