Action1101362.cs 948 B

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