Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ArrangeModeLocalizedConverter.cs « Xamarin.PropertyEditing.Windows - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96d3bc34f16d3d6cffcc5625f684be036e14d751 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Globalization;
using System.Windows.Data;
using Xamarin.PropertyEditing.Properties;

namespace Xamarin.PropertyEditing.Windows
{
	internal class ArrangeModeLocalizedConverter
		: IValueConverter
	{
		public object Convert (object value, Type targetType, object parameter, CultureInfo culture)
		{
			if (value is PropertyArrangeMode mode) {
				switch (mode) {
				case PropertyArrangeMode.Category:
					return Resources.ArrangeByCategory;
				case PropertyArrangeMode.Name:
					return Resources.ArrangeByName;
				case PropertyArrangeMode.ValueSource:
					return Resources.ArrangeByValueSource;
				}
			}

			return value?.ToString ();
		}

		public object ConvertBack (object value, Type targetType, object parameter, CultureInfo culture)
		{
			throw new NotImplementedException ();
		}
	}
}