| 12345678910111213141516171819202122232425262728293031 |
- 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 Action1101315:Action11013
- {
- public Action1101315()
- {
- this.MenuId = ActionType.InclusionASTME45MethodE;
- //夹杂物颜色设置
- choiseArray = new ChoiseArray("parameter3", "夹杂物颜色设置",
- new BooleanObject[]
- {
- new BooleanObject("1", "黑色", true, null),
- new BooleanObject("2", "带蓝色", false, null),
- new BooleanObject("3", "灰色", false, null),
- new BooleanObject("4", "深灰色", false, null)
- }
- );
- choiseArray.initialValue = 1;
- choiseArray.value = 1;
- lists.Add(choiseArray);
- }
- }
- }
|