0
即時通訊使用C#,Linq和DataGridView。使用DatabaseTable字段說明何時DataBinding
我像這樣綁定了我的網格。
var db = new DataClassesDataContext();
var results = db.Results;
.... much later on in the code..
dataGridView1.DataSource = results;
它使用的字段名稱撿回我堆的時間,但它可以使用字段說明,所以我必須爲我的客戶更好的山坳名稱的列。
什麼IM現在做正確使用下劃線字段名稱
- ID
- USER_NAME
- SUR_NAME
所以在ColumnAdded事件中,我做
private void dataGridView1_ColumnAdded(object sender, DataGridViewColumnEventArgs e)
{
e.Column.HeaderText = e.Column.HeaderText.Replace("_"," ");
}
但它只是一項工作ND ..
由於德里克時,會的cols始終是相同的,並且它認爲只有這樣由用戶沒有變化的數據。 – IEnumerable