2011年3月30日 星期三

dataGridView一些屬性

//變更奇數列背景顏色
dataGridView1.AlternatingRowsDefaultCellStyle.BackColor = Color.Gray;

//改變欄位標頭名稱(也可從SQL語法方式直接改 AS )
dataGridView1.Columns[3].HeaderText = "床號";

//防止在dataGridView中新增或刪除資料列
dataGridView1.AllowUserToAddRows = false;
dataGridView1.AllowUserToDeleteRows = false;

//設定寬度
dataGridView1.Columns["State"].Width = 35;


//日期格式
dataGridView1.Columns["Birthday"].DefaultCellStyle.Format = "yyyy-MM-dd";

//目前選取列的資料
dataGridView1.CurrentRow.Cells["Id"].Value.ToString();


(有用到其他的再加進來~)

沒有留言: