private void btnRemove_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { var dc = new ClassSRMDataContext(Config.connection); if (tileView.RowCount == 0) { XtraMessageBox.Show("اطلاعاتی برای حذف وجود ندارد", "خطا", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { var result = XtraMessageBox.Show("برای حذف این وظیفه اطمینان دارید؟", "توجه", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (result == DialogResult.Yes) { dc.DeleteTask((int)tileView.GetRowCellValue(tileView.FocusedRowHandle, "Id")); InitData(); XtraMessageBox.Show("با موفقیت حذف شد", "توجه", MessageBoxButtons.OK, MessageBoxIcon.Information); } } }