ProgressBarValueTextFormatConverter.cs
563 Bytes
using System;
using System.Windows.Data;
namespace OS.Spin.View.ProgressBar
{
public class ProgressBarValueTextFormatConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return string.Format("{0}%", value.ToString());
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}
}