private void barButtonItem4_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { DialogResult result = MessageBox.Show("Oturumu Kapatmak İstediğinize Emin Misiniz?", "EMİN MİSİNİZ?", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (result == DialogResult.Yes) { Form x = new entryForm(); this.Hide(); x.Show(); } }
private void barButtonItem15_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { DialogResult result = MessageBox.Show("Oturumu kapatmak istediğinize emin misiniz?", "EMİN MİSİNİZ?", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (result == DialogResult.Yes) { Form x = new entryForm(); GC.Collect(); GC.WaitForPendingFinalizers(); x.Show(); this.Hide(); } }