首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

DataGridView的其它设立

2012-09-15 
DataGridView的其它设置1,自动列宽设置this.GridColor Color.Greenthis.BackgroundColor Color.Linen

DataGridView的其它设置
1,自动列宽设置

this.GridColor = Color.Green;            this.BackgroundColor = Color.Linen;            this.VirtualMode = true;            this.AllowUserToAddRows = false;            this.AllowUserToDeleteRows = false;            this.AllowUserToOrderColumns = true;            this.AllowUserToResizeColumns = true;            this.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.None;            this.ReadOnly = true;            this.ClipboardCopyMode = DataGridViewClipboardCopyMode.EnableAlwaysIncludeHeaderText;

热点排行