12345678910111213141516171819202122232425262728 |
- using PaintDotNet.Data.Param;
- using System.Drawing;
- namespace PaintDotNet.Data.Action
- {
- public class Action110143 : Action11014
- {
- public Action110143()
- {
- this.MenuId = ActionType.SteelDecarburizationASTME1077;
- //自由铁素体深度
- ColorNumber thirteen = new ColorNumber();
- thirteen.key = "parameter13";
- thirteen.name = PdnResources.GetString("Menu.Freeferritedepth.text");
- thirteen.Value = Color.Black.ToArgb();
- lists.Add(thirteen);
- //勾选自由铁素体深度
- BooleanObject fourteen = new BooleanObject();
- fourteen.key = "parameter14";
- fourteen.name = "是否勾选" + PdnResources.GetString("Menu.Freeferritedepth.text");
- fourteen.initialValue = false;
- fourteen.Value = false;
- lists.Add(fourteen);
- }
- }
- }
|