123456789101112131415161718192021222324252627282930313233 |
- using PaintDotNet.Data.Param;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PaintDotNet.Data.Action
- {
- public class Action11022 : ParamObject
- {
- public Action11022() {
- this.MenuId = ActionType.RecombinationRate;
- //勾选自由铁素体深度
- BooleanObject one = new BooleanObject();
- one.key = "parameter1";
- one.name = "在图像上显示数据";
- one.initialValue = false;
- one.Value = false;
- lists.Add(one);
- IntegerNumber seven = new IntegerNumber(0, 10);
- seven.key = "CalculatorDecimalDigits";
- seven.name = "小数点位数";
- seven.initialValue = 2;
- seven.value = 2;
- lists.Add(seven);
- lists.Add(new BooleanObject("OpenWhileExportReport", "生成报告时打开设置", true, null));
- }
- }
- }
|