using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Controls.ChemicalWeighing { /// 参考坐标轴的转换器 public class ReferenceAxisConverter : TypeConverter { /// public override PropertyDescriptorCollection GetProperties( ITypeDescriptorContext context, object value, Attribute[] attributes) { return TypeDescriptor.GetProperties(value, attributes); } /// public override bool GetPropertiesSupported(ITypeDescriptorContext context) => true; } }