80 lines
2.9 KiB
C#
80 lines
2.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.ComponentModel;
|
|
using System.Globalization;
|
|
using UnitsNet.Units;
|
|
using UnitsNet;
|
|
|
|
namespace CaeGlobals
|
|
{
|
|
public class StringDoubleDefaultConverter : TypeConverter
|
|
{
|
|
// Variables
|
|
private ArrayList values;
|
|
private string _default = "Default";
|
|
public static double InitialValue = 0;
|
|
|
|
|
|
// Constructors
|
|
public StringDoubleDefaultConverter()
|
|
{
|
|
// Initializes the standard values list with defaults.
|
|
values = new ArrayList(new double[] { double.NaN, InitialValue });
|
|
}
|
|
|
|
|
|
// Methods
|
|
public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
|
|
{
|
|
return true;
|
|
}
|
|
public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
|
|
{
|
|
// Passes the local integer array.
|
|
StandardValuesCollection svc = new StandardValuesCollection(values);
|
|
return svc;
|
|
}
|
|
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
|
|
{
|
|
if (sourceType == typeof(string)) return true;
|
|
else return base.CanConvertFrom(context, sourceType);
|
|
}
|
|
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
|
|
{
|
|
// Convert from string
|
|
if (value is string valueString)
|
|
{
|
|
if (Equals(valueString, _default)) return double.NaN;
|
|
else return MyNCalc.ConvertFromString(valueString, ConvertToCurrentUnits);
|
|
}
|
|
else return base.ConvertFrom(context, culture, value);
|
|
}
|
|
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
|
|
{
|
|
try
|
|
{
|
|
if (destinationType == typeof(string))
|
|
{
|
|
if (double.IsNaN((double)value)) return _default;
|
|
else return value.ToString();
|
|
}
|
|
return base.ConvertTo(context, culture, value, destinationType);
|
|
}
|
|
catch
|
|
{
|
|
return base.ConvertTo(context, culture, value, destinationType);
|
|
}
|
|
}
|
|
|
|
public static double ConvertToCurrentUnits(string valueWithUnitString)
|
|
{
|
|
throw new Exception(valueWithUnitString + " is not a valid value for Double.");
|
|
}
|
|
}
|
|
|
|
|
|
} |