コード例 #1
0
        private void bunifuThinButton22_Click(object sender, EventArgs e)
        {
            DialogResult result = MessageBox.Show("Are You Sure To Delete This Information", "Confirmation", MessageBoxButtons.YesNo);

            if (result == DialogResult.Yes)
            {
                string id = bunifuCustomDataGrid1.Rows[bunifuCustomDataGrid1.SelectedCells[0].RowIndex].Cells[0].Value.ToString();
                emp.deleteAppData(int.Parse(id));
                MessageBox.Show("Deleted SuccessFully");
                refresh();
            }
        }