Beispiel #1
0
        private void toolStripButton_NewOutPort_Click(object sender, EventArgs e)
        {
            OutputPort output = new OutputPort();

            output.Location = new Point(400, 100 + count_output * 60);
            panel2.Controls.Add(output);
            output.label.Text = "port" + count.ToString();
            count_output++; count++;
            output.Invalidate();
        }