Action1101283.cs 376 B

12345678910111213141516
  1. using PaintDotNet.Data.Param;
  2. namespace PaintDotNet.Data.Action
  3. {
  4. /// <summary>
  5. /// 晶粒度ISO14250-2000面积法
  6. /// </summary>
  7. public class Action1101283 : Action11012Area
  8. {
  9. public Action1101283() : base()
  10. {
  11. this.MenuId = ActionType.GrainSizeISO14250AreaMethod;
  12. this.OpenImage = "current";
  13. }
  14. }
  15. }