private void contrastToolStripMenuItem_Click(object sender, EventArgs e) { OperationsForm f = new OperationsForm(((MDIForm)ActiveMdiChild), "Contrast"); this.IsAccessible = false; f.ShowDialog(); this.IsAccessible = true; }
private void Brightness_Click(object sender, EventArgs e) { OperationsForm f = new OperationsForm((MDIForm)ActiveMdiChild); this.IsAccessible = false; f.ShowDialog(); this.IsAccessible = true; }
private void meanToolStripMenuItem_Click(object sender, EventArgs e) { OperationsForm f = new OperationsForm(((MDIForm)ActiveMdiChild), Operations.MeanFilter); this.IsAccessible = false; f.ShowDialog(); this.IsAccessible = true; }
private void Brightness_Click(object sender, EventArgs e) { OperationsForm f = new OperationsForm((MDIForm)ActiveMdiChild, Operations.Brighthness); this.IsAccessible = false; f.ShowDialog(); this.IsAccessible = true; }