在VB.NET中绘制三个用户控件网格

时间:2013-10-31 16:16:13

标签: vb.net winforms grid

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

我一直在玩这个很长一段时间,但我无法让它工作,当我使用Me.Controls.Add(UserControl)它覆盖了前一个并且我只剩下一个用户控件形式。

任何帮助表示感谢,谢谢。

1 个答案:

答案 0 :(得分: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();

    }