public AssignTimeForm(AssignTimeAction action)
 {
     InitializeComponent();
     this.helpTopic = AssignTime.HelpTopic;
     this.action    = action;
 }
 public AssignTimePanel(AssignTimeAction action)
 {
     InitializeComponent();
     this.action = action;
 }
 public AssignTimeGraphic(string key, AssignTimeAction element, Point center)
     : base(key, element, center)
 {
     this.needInit = System.Convert.ToBoolean(AssignTime.NeedInit);
     this.Surface.Blit(new Surface(AssignTime.GraphicIcon));
 }