aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Converters/InkVolumeToLiquidRmlFactor.cs
blob: 5f66e617ca710b303460872711ae39d6fc0a5844 (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
33
34
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();
    //    }
    //}
}