using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Data; namespace MegaRobo.C00225155App.Converters { public class DoubleToStringConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if (value is double doubleValue) { return doubleValue.ToString(); // 保留两位小数 } return string.Empty; } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { if (double.TryParse(value as string, out double result)) { return result; } return 0; } } }