Exemple #1
0
        public Constructor_Core(Schematix.FSM.Constructor_UserControl form)
        {
            this.Form = form;

            bitmap         = new My_Bitmap(this);
            paper          = new My_Paper(this);
            graph          = new Schematix.FSM.My_Graph(this);
            graph_history  = new Schematix.FSM.Graph_History(this);
            group_selector = new Schematix.FSM.GroupSelector(this);
        }
Exemple #2
0
 public My_Paper(Schematix.FSM.Constructor_Core core)
 {
     this.core = core;
     this.form = core.form;
     if (form != null)
     {
         this.BGColor = form.BackColor;
     }
     this.scale = 1;
     DrawBorder = true;
     DrawGrig   = true;
     LineColor  = Color.Green;
 }