29 lines
867 B
C#
29 lines
867 B
C#
using MainShell.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Data;
|
|
|
|
namespace MainShell.Converter
|
|
{
|
|
public class BondingWsPathModeToBoolConverter : IValueConverter
|
|
{
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
BondingWSPathMode speedMode = (BondingWSPathMode)value;
|
|
int mode = System.Convert.ToInt32(parameter.ToString());
|
|
|
|
return mode == (int)speedMode ? true : false;
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
int mode = System.Convert.ToInt32(parameter.ToString());
|
|
return (BondingWSPathMode)mode;
|
|
}
|
|
}
|
|
}
|