Exemple #1
0
 public VisualConsole()
 {
     Parent = null;
     Text = "Visual Console";
     Size = new Size (700, 500);
     AutoScroll = true;
     BackColor = Color.White;
     Control = new VisualControl ();
     Control.Location = new Point (0, 0);
     Control.Parent = this;
     Control.Focus ();
 }
Exemple #2
0
 public VisualConsole()
 {
     Parent           = null;
     Text             = "Visual Console";
     Size             = new Size(700, 500);
     AutoScroll       = true;
     BackColor        = Color.White;
     Control          = new VisualControl();
     Control.Location = new Point(0, 0);
     Control.Parent   = this;
     Control.Focus();
 }