Action1101211.cs 375 B

12345678910111213141516
  1. using PaintDotNet.Data.Param;
  2. namespace PaintDotNet.Data.Action
  3. {
  4. /// <summary>
  5. /// 晶粒度ASTME112-2013截距法
  6. /// </summary>
  7. public class Action1101211 : Action11012
  8. {
  9. public Action1101211() : base()
  10. {
  11. this.MenuId = ActionType.GrainSizeE112CutOffPointMethod;
  12. this.OpenImage = "current";
  13. }
  14. }
  15. }