2019-05-01 00:00:08 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
2019-07-16 23:35:21 +02:00
|
|
|
|
namespace Toolbox.Library.Forms
|
2019-05-01 00:00:08 +02:00
|
|
|
|
{
|
|
|
|
|
public partial class STConsoleForm : STForm
|
|
|
|
|
{
|
|
|
|
|
public STConsoleForm()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
stPanel1.Controls.Add(STConsole.Instance);
|
|
|
|
|
|
|
|
|
|
Text = "Console";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|