Action1002.cs 1.0 KB

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. /// <summary>
  10. /// 多相统计
  11. /// </summary>
  12. public class Action1002 : ParamObject
  13. {
  14. public Action1002() {
  15. this.MenuId = ActionType.MultiphaseStatistics;
  16. //小数
  17. IntegerNumber eight = new IntegerNumber(0, 10);
  18. eight.key = "CalculatorDecimalDigits";
  19. eight.name = "小数点位数";
  20. eight.initialValue = 2;
  21. eight.value = 2;
  22. lists.Add(eight);
  23. lists.Add(new BooleanObject("OpenWhileExportReport", "生成报告时打开设置", true, null));
  24. lists.Add(new BooleanObject("ExportResults", "导出结果", true, null));
  25. lists.Add(new BooleanObject("ExportReports", "生成报告", true, null));
  26. lists.Add(new BooleanObject("ExportProjects", "导出项目", true, null));
  27. }
  28. }
  29. }