1
我要讓簡單的銷售報名表, 首先我要問發票號碼和客戶名稱,然後 下一個銷售入口,我想添加使用datagridview的,就像細節:datagridview的例子
sr.no---Product Name------Price---qty---total
1 Item 1 150.00 2 300.00
2 Item 2 80.00 3 240.00
上面的細節我想添加在可編輯的行中使用datagridview,但與適當的驗證。
private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
dataGridView1.CurrentRow.Cells["l_sr"].Value = "1";
}
你能幫助這個
謝謝薩欽,但我想這一切都在窗口的應用程序C#.NET – Raj
您的意思是Windows窗體應用程序? –
是的,C#窗體窗體應用程序 – Raj