使用C#的矩阵颜色单元格

时间:2012-12-08 11:29:52

标签: c# colormatrix

我需要创建一个40x40矩阵并手动为每个单元着色,如下所示。

Color Matrix

我认为我可以在表单应用程序上使用40 * 40 = 160个标签并逐个着色,但效果不是很好。什么是最好的做法。也许是ColorMatrix?

2 个答案:

答案 0 :(得分:1)

这是一个完整但简单的Windows窗体应用程序。

这可能是最直接的方式。考虑一下我不是从矩阵中抓取颜色这一事实,但是你得到了这个想法,它有应该在代码中绘制它的方式

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 WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        protected override void OnPaint(PaintEventArgs e)
        {
            base.OnPaint(e);

            for (int x = 0, y = 0; x + y != (this.Width + this.Height); x++)
            {
                var color = Color.Red;
                if (x % 2 == 0 && y % 2 != 0) { color = Color.Blue; }

                e.Graphics.FillRectangle(new SolidBrush(color), x, y, 1, 1);

                if (x == this.Width)
                {
                    x = -1;
                    y++;
                }
            }
        }
    }
}

答案 1 :(得分:0)

拦截OnPaint事件的一种替代方法是创建40x40像素的位图,例如通过System.Drawing.Bitmap类,设置所有像素的颜色。

最后根据您在PictureBox(Windows窗体)或图像(WPF)中的UI技术显示它,并设置缩放值以填充整个控件的大小。