Action1101924.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. using PaintDotNet.Data.Param;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace PaintDotNet.Data.Action
  8. {
  9. public class Action1101924: Action110192
  10. {
  11. public Action1101924() {
  12. this.MenuId = ActionType.GrayIronISO945Level;
  13. //石墨面积率区间
  14. IntegerNumber fifteen = new IntegerNumber(0, 10000);
  15. fifteen.key = "parameter15";
  16. fifteen.name = "最小" + PdnResources.GetString("Menu.Dedicatedanalysis.blackmetal.Graphitearearaterange.text") + "(%)";
  17. fifteen.initialValue = 0;
  18. fifteen.value = 0;
  19. lists.Add(fifteen);
  20. //石墨面积率区间
  21. IntegerNumber sixteen = new IntegerNumber(0, 10000);
  22. sixteen.key = "parameter16";
  23. sixteen.name = "最大" + PdnResources.GetString("Menu.Dedicatedanalysis.blackmetal.Graphitearearaterange.text") + "(%)";
  24. sixteen.initialValue = 0;
  25. sixteen.value = 0;
  26. lists.Add(sixteen);
  27. }
  28. }
  29. }