Beispiel #1
0
        public ctdAgrupador()
        {
            InitializeComponent();
            this.FormBorderStyle = FormBorderStyle.Fixed3D;

            this.lstBase = new List <central>()
            {
            };

            for (int x = 0; x < 2; ++x)
            {
                central tmp = new central(x + 1);
                tmp.Show();
                this.lstBase.Add(tmp);
                this.Shown += (sender, e) => { this.WindowState = FormWindowState.Minimized; };
            }
        }
 private void baseGUI_Load(object sender, EventArgs e)
 {
     this.windowc = new central(this);
     this.windowc.ShowDialog();
 }