Action11022.cs 982 B

123456789101112131415161718192021222324252627282930313233
  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 Action11022 : ParamObject
  10. {
  11. public Action11022() {
  12. this.MenuId = ActionType.RecombinationRate;
  13. //勾选自由铁素体深度
  14. BooleanObject one = new BooleanObject();
  15. one.key = "parameter1";
  16. one.name = "在图像上显示数据";
  17. one.initialValue = false;
  18. one.Value = false;
  19. lists.Add(one);
  20. IntegerNumber seven = new IntegerNumber(0, 10);
  21. seven.key = "CalculatorDecimalDigits";
  22. seven.name = "小数点位数";
  23. seven.initialValue = 2;
  24. seven.value = 2;
  25. lists.Add(seven);
  26. lists.Add(new BooleanObject("OpenWhileExportReport", "生成报告时打开设置", true, null));
  27. }
  28. }
  29. }