Action1101311.cs 991 B

12345678910111213141516171819202122232425262728293031323334
  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. /// E45 A
  11. /// </summary>
  12. public class Action1101311: Action11013
  13. {
  14. public Action1101311() {
  15. this.MenuId = ActionType.InclusionASTME45MethodA;
  16. //夹杂物颜色设置
  17. choiseArray = new ChoiseArray("parameter3", "夹杂物颜色设置",
  18. new BooleanObject[]
  19. {
  20. new BooleanObject("1", "黑色", true, null),
  21. new BooleanObject("2", "带蓝色", false, null),
  22. new BooleanObject("3", "灰色", false, null),
  23. new BooleanObject("4", "深灰色", false, null)
  24. }
  25. );
  26. choiseArray.initialValue = 1;
  27. choiseArray.value = 1;
  28. lists.Add(choiseArray);
  29. }
  30. }
  31. }