You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lj_plc/Controls/Mesnac.Controls.ChemicalWei.../HslCurve/ReferenceAxisConverter.cs

26 lines
841 B
C#

using System;
using System.ComponentModel;
namespace Mesnac.Controls.ChemicalWeighing.HslCurve
{
/// <summary>
/// 参考坐标轴的转换器
/// </summary>
// Token: 0x02000026 RID: 38
public class ReferenceAxisConverter : TypeConverter
{
/// <inheritdoc />
// Token: 0x060003BE RID: 958 RVA: 0x000293E8 File Offset: 0x000275E8
public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
{
return TypeDescriptor.GetProperties(value, attributes);
}
/// <inheritdoc />
// Token: 0x060003BF RID: 959 RVA: 0x00029404 File Offset: 0x00027604
public override bool GetPropertiesSupported(ITypeDescriptorContext context)
{
return true;
}
}
}