| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using PaintDotNet.Data.Param;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PaintDotNet.Data.Action
- {
- /// <summary>
- /// 球铁
- /// </summa
- /// y>
- public class Action11018: ActionAnalysis
- {
- public Action11018() {
- //筛选
- BooleanObject one = new BooleanObject();
- one.key = "parameter1";
- one.name = PdnResources.GetString("Menu.filter.text");
- one.initialValue = false;
- one.Value = false;
- lists.Add(one);
- //筛选下限
- IntegerNumber two = new IntegerNumber(0, 10000);
- two.key = "parameter2";
- two.name = PdnResources.GetString("Menu.filter.text") + "下限";
- two.initialValue = 0;
- two.value = 0;
- lists.Add(two);
- //筛选上限
- IntegerNumber three = new IntegerNumber(0, 10000);
- three.key = "parameter3";
- three.name = PdnResources.GetString("Menu.filter.text") + "上限";
- three.initialValue = 0;
- three.value = 0;
- lists.Add(three);
- }
- }
- }
|