private void chbCD_CheckedChanged(object sender, EventArgs e) { if (chbCD.Checked) { DialogResult result = MessageBox.Show("If your book have CD or DVD please Choose Yes" + "\nSo go to Add New CD - DVD Form and added your Book CD" + "\nElse Choose No and Close Massage and Clear CheckBox" + "\nاگر کتاب شما دارای لوح فشرده می باشد لطفاً کلید تایید را فشار دهید" + "\nتا در فرم ای لوح فشرده مربوطه را ثبت کنید" + "\nدر غیر این صورت کلید انصراف را فشار دهید", "Add New CD - DVD Masseage", MessageBoxButtons.YesNo, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); if (result == DialogResult.No) { chbCD.Checked = false; } else if (result == DialogResult.Yes) { FormAddC AddC = new FormAddC(); AddC.ShowDialog(); } } StatusText = "Ready"; }
private void AddToolStripMenuItem_Click(object sender, EventArgs e) { FormAddC AddC = new FormAddC(); AddC.ShowDialog(); }