m0_65468163 2022-07-11 21:21 采纳率: 85.7%
浏览 43
已结题

C#绘制网格图,哪个控件能绘制

C#winform如何绘制二维网格图,具体各个单元格的颜色已经有数据了,不知道怎么实现图像的绘制

  • 写回答

1条回答 默认 最新

  • 码老头 2022-07-12 17:10
    关注

    做了一个简单的示例,看效果:

    img

    或者有色块的网格:

    img

    以下是无色块的示例代码:

    using System.Drawing;
    using System.Windows.Forms;
    
    namespace WindowsFormsApp1.Forms.Csdn
    {
        public partial class Q7756354 : Form
        {
            readonly int rows = 10;
            readonly int cols = 10;
            float _cellWidth;
            float _cellHeight;
            private readonly Pen _pen = new Pen(Color.BurlyWood);
    
            public Q7756354()
            {
                InitializeComponent();
                _cellWidth = (float)ClientSize.Width / cols;
                _cellHeight = (float)ClientSize.Height / rows;
            }
    
            private void Q7756354_Resize(object sender, System.EventArgs e)
            {
                _cellWidth = (float)ClientSize.Width / cols;
                _cellHeight = (float)ClientSize.Height / rows;
                Invalidate();
            }
    
            private void Q7756354_Paint(object sender, PaintEventArgs e)
            {
                for (var row = 0; row < rows; row++)
                {
                    var y = row * _cellHeight;
                    var w = _cellWidth;
    
                    for (var col = 0; col < cols; col++)
                    {
                        var x = col * _cellWidth;
                        var h = _cellHeight;
                        DrawRectangle(x, y, w, h);
                    }
                }
                var g = e.Graphics;
                for (var i = 1; i < rows; i++)
                {
                    g.DrawLine(_pen, 0, i * _cellHeight, ClientSize.Width, i * _cellHeight);
                }
                for (var i = 1; i < cols; i++)
                {
                    g.DrawLine(_pen, i * _cellWidth, 0, i * _cellWidth, ClientSize.Height);
                }
    
    
            }
    
            private void DrawRectangle(float x, float y, float width, float height)
            {
                var brush = new SolidBrush(Color.DarkGray);
                var graphics = CreateGraphics();
                graphics.FillRectangle(brush, new RectangleF(x, y, width, height));
                brush.Dispose();
                graphics.Dispose();
            }
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录

报告相同问题?

问题事件

  • 系统已结题 8月3日
  • 已采纳回答 7月26日
  • 创建了问题 7月11日

悬赏问题

  • ¥15 Arcgis相交分析无法绘制一个或多个图形
  • ¥15 seatunnel-web使用SQL组件时候后台报错,无法找到表格
  • ¥15 fpga自动售货机数码管(相关搜索:数字时钟)
  • ¥15 用前端向数据库插入数据,通过debug发现数据能走到后端,但是放行之后就会提示错误
  • ¥30 3天&7天&&15天&销量如何统计同一行
  • ¥30 帮我写一段可以读取LD2450数据并计算距离的Arduino代码
  • ¥15 飞机曲面部件如机翼,壁板等具体的孔位模型
  • ¥15 vs2019中数据导出问题
  • ¥20 云服务Linux系统TCP-MSS值修改?
  • ¥20 关于#单片机#的问题:项目:使用模拟iic与ov2640通讯环境:F407问题:读取的ID号总是0xff,自己调了调发现在读从机数据时,SDA线上并未有信号变化(语言-c语言)