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/ScaleMode.cs

31 lines
725 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

namespace Mesnac.Controls.ChemicalWeighing.HslCurve
{
/// <summary>
/// 缩小放大的模式
/// </summary>
// Token: 0x02000022 RID: 34
public enum ScaleMode
{
/// <summary>
/// 不支持任何的缩放
/// </summary>
// Token: 0x04000163 RID: 355
None,
/// <summary>
/// 只有X轴
/// </summary>
// Token: 0x04000164 RID: 356
OnlyX,
/// <summary>
/// X轴和Y轴同时放大
/// </summary>
// Token: 0x04000165 RID: 357
Both,
/// <summary>
/// 先X轴放大再Y轴放大
/// </summary>
// Token: 0x04000166 RID: 358
XThenY
}
}