|
|
|
C# WinApp จะดักจับ ว่า DataGridView มีการแกไข้ข้อมูลหรือไม่ ครับ |
|
|
|
|
|
|
|
ท่านลองใช้ใน Events CellValueChanged ดูครับไม่แน่ใจว่าจะตอบโจทย์ไหม
Code (C#)
private void dataGridView1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
if (dataGridView1.Columns[e.ColumnIndex].Name == "Name")
{
dataGridView1[dataGridView1.Columns.Count - 2, e.RowIndex].Value = "User Name";
dataGridView1[dataGridView1.Columns.Count - 1, e.RowIndex].Value = DateTime.Now;
}
}
|
|
|
|
|
Date :
2018-08-27 11:40:25 |
By :
K |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|