public AssignLinePanel(AssignLineAction action)
 {
     InitializeComponent();
     this.action = action;
 }
 public AssignLineGraphic(string key, AssignLineAction element, Point center)
     : base(key, element, center)
 {
     this.needInit = System.Convert.ToBoolean(AssignLine.NeedInit);
     this.Surface.Blit(new Surface(AssignLine.GraphicIcon));
 }
 public AssignLineForm(AssignLineAction action)
 {
     InitializeComponent();
     this.helpTopic = AssignLine.HelpTopic;
     this.action    = action;
 }