设置DdtaGridView控件中网格线的样式

Posted feiyucha

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置DdtaGridView控件中网格线的样式相关的知识,希望对你有一定的参考价值。

实现效果:

  技术分享图片

知识运用:

  DataGridView控件的GridColor属性    //用来获取或设置网格线的颜色

  public Color GridColor { get; set; }  //属性值: Color对象或  SystemColors对象

 实现代码:

        private void Form1_Load(object sender, EventArgs e)
        {
            dataGridView1.GridColor = Color.Red;
            dataGridView1.DataSource = new List<Student>()
            {
                new Student(){Age=21,Name="小敏"},
                new Student(){Age=33,Name="老臣"},
                new Student(){Age=24,Name="小峰"},
                new Student(){Age=22,Name="张嘎"},
                new Student(){Age=21,Name="半胖"}
            };
            dataGridView1.Columns[0].Width = 150;
            dataGridView1.Columns[1].Width = 150;
        }

 

以上是关于设置DdtaGridView控件中网格线的样式的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Flex 3 中增加水平网格线的粗细

c#如何让DataGridView控件在没有绑定数据源的情况下显示网格线?

样式设置器中的 UWP 绑定不起作用

MFC 列表控件滚动显示额外的网格线

用于控制的 Dock 样式

在 WPF DataGrid 的单个单元格上设置删除线的最佳方法?