如何更改面板阵列

时间:2016-10-21 15:45:48

标签: c# arrays panel

我创建了一个带有面板的棋盘,我为显示女王和下面的代码创建了8个女王的问题。我不能在表格中为表演女王改变颜色特定的细胞板。

        const int tileSize = 50;
        const int gridSize = 8;
        var clr1 = Color.Black;
        var clr2 = Color.White;

        // initialize the "chess board"
        _chessBoardPanels = new Panel[gridSize, gridSize];

        // double for loop to handle all rows and columns
        for (var n = 0; n < gridSize; n++)
        {
            for (var m = 0; m < gridSize; m++)
            {
                // create new Panel control which will be one 
                // chess board tile
                var newPanel = new Panel
                {
                    Size = new Size(tileSize, tileSize),
                    Location = new Point(tileSize * n, tileSize * m)
                };

                // add to Form's Controls so that they show up
                Controls.Add(newPanel);

                // add to our 2d array of panels for future use
                _chessBoardPanels[n, m] = newPanel;

                // color the backgrounds
                if (n % 2 == 0)

                    newPanel.BackColor = m % 2 != 0 ? clr1 : clr2;
                else
                    newPanel.BackColor = m % 2 != 0 ? clr2 : clr1;

            }

请求帮助:如何更改特定颜色面板并以表格形式显示?这个示例代码我很喜欢。

                int[] x = new int[] { 1, 5, 6, 7, 3, 0, 2 };
                for (int i = 0; i < 8; i++)
                {

                    switch (i)
                    {
                        case 1:
                            {
                                newPanel.BackColor = Color.Red;
                                _chessBoardPanels[x[i], i] = newPanel;
                                break;
                            }

                            ...
                    }
                }

1 个答案:

答案 0 :(得分:0)

见下面的代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication13
{
    public partial class Form1 : Form
    {
        Panel[,] _chessBoardPanels = null;
        public Form1()
        {
            InitializeComponent();

            const int tileSize = 50;
            const int gridSize = 8;
            var clr1 = Color.Black;
            var clr2 = Color.White;

            // initialize the "chess board"
            _chessBoardPanels = new Panel[gridSize, gridSize];

            // double for loop to handle all rows and columns
            for (var n = 0; n < gridSize; n++)
            {
                for (var m = 0; m < gridSize; m++)
                {
                    // create new Panel control which will be one 
                    // chess board tile
                    var newPanel = new Panel
                    {
                        Size = new Size(tileSize, tileSize),
                        Location = new Point(tileSize * n, tileSize * m)
                    };

                    // add to Form's Controls so that they show up
                    Controls.Add(newPanel);

                    // add to our 2d array of panels for future use
                    _chessBoardPanels[n, m] = newPanel;

                    // color the backgrounds
                    if (n % 2 == 0)

                        newPanel.BackColor = m % 2 != 0 ? clr1 : clr2;
                    else
                        newPanel.BackColor = m % 2 != 0 ? clr2 : clr1;

                }
            }
        }

        private void button1_Click(object sender, EventArgs e)
        {
                int[] x = new int[] { 1, 5, 6, 7, 3, 0, 2 };
                for (int i = 0; i < 8; i++)
                {

                    switch (i)
                    {
                        case 1:
                            {
                                _chessBoardPanels[x[i], i].BackColor  = Color.Red;
                                break;
                            }
                    }
                }
        }
    }
}