博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# DataGridView样式 (蓝色)
阅读量:5083 次
发布时间:2019-06-13

本文共 1980 字,大约阅读时间需要 6 分钟。

代码:

#region DataGridVeiw Style

System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
this.DataGridView1.AllowUserToAddRows = false;
this.DataGridView1.AllowUserToDeleteRows = false;
dataGridViewCellStyle1.BackColor = System.Drawing.Color.LightCyan;
this.DataGridView1.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
this.DataGridView1.BackgroundColor = System.Drawing.Color.White;
this.DataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.DataGridView1.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;//211, 223, 240
dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(223)))), ((int)(((byte)(240)))));
dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Navy;
dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
this.DataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
this.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.DataGridView1.EnableHeadersVisualStyles = false;
this.DataGridView1.GridColor = System.Drawing.SystemColors.GradientInactiveCaption;
this.DataGridView1.ReadOnly = true;
this.DataGridView1.RowHeadersVisible = false;
this.DataGridView1.RowTemplate.Height = 23;
this.DataGridView1.RowTemplate.ReadOnly = true;
#endregion

 

FROM:

转载于:https://www.cnblogs.com/anorthwolf/archive/2012/09/10/2679101.html

你可能感兴趣的文章
kmp-洛谷P2375 动物园
查看>>
杂曲歌辞·杨柳枝
查看>>
swiftmailer时没有设置https的选项,才可以发送成功。在linux下面
查看>>
C#程序分析
查看>>
(6)javascript 基本概念--- -- 函数
查看>>
在Windows服务中托管 ASP.NET Core的坑
查看>>
Linux MySQL主从复制(Replication)配置
查看>>
多表联查
查看>>
suoi46 最大和和 (线段树)
查看>>
JQ轮播小demo
查看>>
【原创】大叔问题定位分享(20)hdfs文件create写入正常,append写入报错
查看>>
2016 西班牙 国家德比(西甲31轮)
查看>>
CArichive每次读写一行
查看>>
让QT支持中文的方法
查看>>
dos批处理知识
查看>>
多文档界面的实现(DotNetBar的superTabControl)
查看>>
3.字符串
查看>>
关于深复制与浅复制
查看>>
js 重写a标签的href属性和onclick事件
查看>>
关于需要授权处理获取数据的跳转
查看>>