public LineForm(LineAction action)
        {
            InitializeComponent();
            this.helpTopic = Line.HelpTopic;

            //The action is saved in order to save the changes
            this.action = action;
        }
 public LineGraphic(string key, LineAction element, Point center)
     : base(key, element, center)
 {
     this.needInit = System.Convert.ToBoolean(Line.NeedInit);
     this.Surface.Blit(new Surface(Line.GraphicIcon));
 }
Beispiel #3
0
 public LinePanel(LineAction action)
 {
     InitializeComponent();
     this.action = action;
 }