|
|
|
C# WinApp MessageBox เพื่อยืนยันการลบ row เมื่อกดปุ่ม delete ใน DataGridView ครับ |
|
|
|
|
|
|
|
ได้แล้วครับ ใช้ AllowUserToDeleteRows
เผื่อมีใครอยากเอาไปเล่นครับ
Code (C#)
private void tblOne2UpLinkDataGridView_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Delete)
{
if (MessageBox.Show("คุณต้องการลบข้อมูลหรือไม่", "warning", MessageBoxButtons.YesNo) == System.Windows.Forms.DialogResult.Yes)
{
tblOne2UpLinkDataGridView.AllowUserToDeleteRows = true;
}
else
{
tblOne2UpLinkDataGridView.AllowUserToDeleteRows = false;
}
}
}
|
|
|
|
|
Date :
2018-05-17 23:24:48 |
By :
lamaka.tor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|