using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Data; using Tango.BL.Entities; using static Tango.BL.Entities.BrushStop; namespace Tango.MachineStudio.Developer.Converters { //public class InkVolumeToLiquidRmlFactor : IMultiValueConverter //{ // public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture) // { // InkVolume inkVolume = values[0] as InkVolume; // Rml selectedRml = values[1] as Rml; // if (inkVolume != null && selectedRml != null) // { // return inkVolume.GetLiquidMaxNanoliterPerCentimeter().ToString(); // } // return String.Empty; // } // public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture) // { // throw new NotImplementedException(); // } //} }