Statistics
| Branch: | Revision:

root / trunk / Pithos.Client.WPF / Converters / DummyConverter.cs @ 06f11e8b

History | View | Annotate | Download (512 Bytes)

1
using System;
2
using System.Collections.Generic;
3
using System.Globalization;
4
using System.Linq;
5
using System.Text;
6
using System.Windows.Data;
7

    
8
namespace Pithos.Client.WPF.Converters
9
{
10
	public class DummyConverter:IValueConverter
11
	{
12
	    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
13
	    {
14
	        return value;
15
	    }
16

    
17
	    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
18
	    {
19
	        return value;
20
	    }
21
	}
22
}