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 Action11011033: Action110110B
- {
- public Action11011033()
- {
- this.MenuId = ActionType.VermiculateCastIronISO945Level;
- //石墨面积率区间
- IntegerNumber fifteen = new IntegerNumber(0, 10000);
- fifteen.key = "parameter15";
- fifteen.name = "最小" + PdnResources.GetString("Menu.Dedicatedanalysis.blackmetal.Graphitearearaterange.text") + "(%)";
- fifteen.initialValue = 0;
- fifteen.value = 0;
- lists.Add(fifteen);
- //石墨面积率区间
- IntegerNumber sixteen = new IntegerNumber(0, 10000);
- sixteen.key = "parameter16";
- sixteen.name = "最大" + PdnResources.GetString("Menu.Dedicatedanalysis.blackmetal.Graphitearearaterange.text") + "(%)";
- sixteen.initialValue = 0;
- sixteen.value = 0;
- lists.Add(sixteen);
- }
- }
- }
|