| 123456789101112131415161718192021222324252627 |
- using System;
- using System.Globalization;
- using System.Windows.Data;
- namespace SWRIS.Converters
- {
- public class MenuNameToPositionConverter : IValueConverter
- {
- public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
- {
- var menuName = (string)value;
- switch (menuName)
- {
- case "Home":
- return 0;
- case "Record":
- return 157;
- }
- return 0;
- }
- public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
- {
- throw new NotImplementedException();
- }
- }
- }
|