public ResetPanel(ResetAction action)
 {
     InitializeComponent();
     this.action = action;
 }
 public ResetGraphic(string key, ResetAction element, Point center)
     : base(key, element, center)
 {
     this.needInit = System.Convert.ToBoolean(Reset.NeedInit);
     this.Surface.Blit(new Surface(Reset.GraphicIcon));
 }
 public ResetForm(ResetAction action)
 {
     InitializeComponent();
     this.helpTopic = Reset.HelpTopic;
     this.action    = action;
 }