Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

30 linhas
824 B

  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;
  8. using System.Windows.Controls;
  9. using System.Windows.Data;
  10. namespace BPA.UIControl.Converters
  11. {
  12. /// <summary>
  13. /// to data grid row index
  14. /// </summary>
  15. public class DataGridRowIndexConverter : IValueConverter
  16. {
  17. /// <inheritdoc/>
  18. public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
  19. {
  20. return value is DataGridRow row ? row.GetIndex() + 1 : 0;
  21. }
  22. /// <inheritdoc/>
  23. public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
  24. {
  25. return DependencyProperty.UnsetValue;
  26. }
  27. }
  28. }