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 (); }
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(); }