DoubleToStringConverter.cs 631 Bytes
using System;
using System.Windows.Data;

namespace OS.Spin.View.MainWindowControls
{

    public class DoubleToStringConverter : IValueConverter
    {
        //将Category转换为Uri
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            var c = (double)value;
            return c.ToString("N");
        }
        //不会被调用
        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }
}