Action110143.cs 921 B

12345678910111213141516171819202122232425262728
  1. using PaintDotNet.Data.Param;
  2. using System.Drawing;
  3. namespace PaintDotNet.Data.Action
  4. {
  5. public class Action110143 : Action11014
  6. {
  7. public Action110143()
  8. {
  9. this.MenuId = ActionType.SteelDecarburizationASTME1077;
  10. //自由铁素体深度
  11. ColorNumber thirteen = new ColorNumber();
  12. thirteen.key = "parameter13";
  13. thirteen.name = PdnResources.GetString("Menu.Freeferritedepth.text");
  14. thirteen.Value = Color.Black.ToArgb();
  15. lists.Add(thirteen);
  16. //勾选自由铁素体深度
  17. BooleanObject fourteen = new BooleanObject();
  18. fourteen.key = "parameter14";
  19. fourteen.name = "是否勾选" + PdnResources.GetString("Menu.Freeferritedepth.text");
  20. fourteen.initialValue = false;
  21. fourteen.Value = false;
  22. lists.Add(fourteen);
  23. }
  24. }
  25. }