Exemple #1
0
 private void Qitem_Removed(UCQuestionListItem item, IQuestion question)
 {
     if (MessageBox.Show("آیا میخواهید این پرسش از پایگاه پرسشها حذف شود؟", "حذف پرسشها", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes)
     {
         question.DeleteFromDb();
         search();
         if (item.Checked)
         {
             var controls = flpSelectedQuestions.Controls;
             controls.Remove(controls.Find(question.Id, false)[0]);
             selectedQuestions.Remove(question);
             RefreshNumberInFlpSelected();
         }
     }
 }