码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-12-31 19:46:24      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:inf   list   控件   get   技术   color   设置   csharp   sharp   

实现效果:

  技术分享图片

知识运用:

  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控件中网格线的样式

标签:inf   list   控件   get   技术   color   设置   csharp   sharp   

原文地址:https://www.cnblogs.com/feiyucha/p/10203069.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!