Files
BeWoPlaner/BeWo/Converter/Int2DecimalConverter.cs
2016-06-27 01:45:38 +02:00

25 lines
673 B
C#

using System;
using System.Globalization;
using System.Windows.Data;
using System.Windows.Markup;
namespace BeWo.Converter
{
public class Int2DecimalConverter : IValueConverter
{
#region IValueConverter Members
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return System.Convert.ToDecimal(value);
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return System.Convert.ToInt32(value);
}
#endregion
}
}