public MathGraphic(string key, MathAction element, Point center)
     : base(key, element, center)
 {
     this.needInit = System.Convert.ToBoolean(Math.NeedInit);
     this.Surface.Blit(new Surface(Math.GraphicIcon));
 }
Example #2
0
 public MathForm(MathAction action)
 {
     InitializeComponent();
     this.helpTopic = Math.HelpTopic;
     this.action    = action;
 }
 public MathPanel(MathAction action)
 {
     InitializeComponent();
     this.action = action;
 }