0

我有一个大小为 25x25 的用户控件,我想将它复制到三个单独的 10x10 网格中,我可以更改表单上的位置。我正在做一个流行病模拟,所以三个网格代表三个国家,我将根据网格方块的感染状态更改用户控件的颜色。

我已经玩了很长时间了,但我无法让它工作,当我使用 Me.Controls.Add(UserControl) 时,它会覆盖前一个,并且我在表单上只剩下一个用户控件。

任何帮助表示赞赏,谢谢。

4

1 回答 1

0

下面是一种创建网格的方法,您可以将任意控件放入此“网格”的“单元格”中。要运行它,将此代码粘贴到任何按钮处理程序中,它将完成所需的一切。我不知道这是否是确切的解决方案,但您可能会从中得到一些东西。如果您可以在不同状态下模拟您的屏幕将会很有帮助,因此我们了解您真正想要什么。

DoAGrid在某些按钮处理程序上调用方法:

 DoAGrid(bool.Parse(_txtTest.Text)); // type true or false in txt

方法

private void DoAGrid(bool isTest)
{

        const int size = 30; // I give 2 for controll padding
        const int padding = 20; // x and y starting padding
        Point[,] grid = new Point[10,10]; // x and y of each control


        List<Control> btns = null; 
        if (isTest) btns  = new List<Control>(100);

        for (int x = 1; x < 11; x++)
        {
            for (int y = 1; y < 11; y++)
            {
                grid[x - 1, y - 1] = new Point(padding + x*size - 30 - 1,  padding + y*size - 30 - 1); // 30 - 1 --> size + 2
                if (isTest)
                { // this test will add all avail buttons so you can see how grid is formed
                    Button b = new Button();
                    b.Size = new Size(size, size);
                    b.Text = "B";
                    b.Location = grid[x - 1, y - 1];
                    btns.Add(b);
                }

            }
        }

        Form f = new Form();
        f.Size = new Size(1000, 1000);

        if (isTest)
        {
            f.Controls.AddRange(btns.ToArray());
        }
        else
        {
            // Add controls to random grid cells
            Button b1 = new Button();
            b1.Size = new Size(size, size);
            b1.Text = "B1";
            b1.Location = grid[3, 3];
            Button b2 = new Button();
            b2.Size = new Size(size, size);
            b2.Text = "B2";
            b2.Location = grid[5, 5];
            Button b3 = new Button();
            b3.Size = new Size(size, size);
            b3.Text = "B3";
            b3.Location = grid[8, 8];
            Button b4 = new Button();
            b4.Size = new Size(size, size);
            b4.Text = "B4";
            b4.Location = grid[8, 9];
            Button b5 = new Button();
            b5.Size = new Size(size, size);
            b5.Text = "B5";
            b5.Location = grid[9, 8];
            Button b6 = new Button();
            b6.Size = new Size(size, size);
            b6.Text = "B6";
            b6.Location = grid[9, 9];
            f.Controls.AddRange(new Button[] { b1, b2, b3, b4, b5, b6 });
        }

        f.ShowDialog();

    }
于 2013-10-31T21:59:12.303 回答