示例#1
0
 private void contrastToolStripMenuItem_Click(object sender, EventArgs e)
 {
     OperationsForm f = new OperationsForm(((MDIForm)ActiveMdiChild), "Contrast");
     this.IsAccessible = false;
     f.ShowDialog();
     this.IsAccessible = true;
 }
示例#2
0
 private void Brightness_Click(object sender, EventArgs e)
 {
     OperationsForm f = new OperationsForm((MDIForm)ActiveMdiChild);
     this.IsAccessible = false;
     f.ShowDialog();
     this.IsAccessible = true;
 }
示例#3
0
        private void meanToolStripMenuItem_Click(object sender, EventArgs e)
        {
            OperationsForm f = new OperationsForm(((MDIForm)ActiveMdiChild), Operations.MeanFilter);

            this.IsAccessible = false;
            f.ShowDialog();
            this.IsAccessible = true;
        }
示例#4
0
        private void Brightness_Click(object sender, EventArgs e)
        {
            OperationsForm f = new OperationsForm((MDIForm)ActiveMdiChild, Operations.Brighthness);

            this.IsAccessible = false;
            f.ShowDialog();
            this.IsAccessible = true;
        }
示例#5
0
        private void contrastToolStripMenuItem_Click(object sender, EventArgs e)
        {
            OperationsForm f = new OperationsForm(((MDIForm)ActiveMdiChild), "Contrast");

            this.IsAccessible = false;
            f.ShowDialog();
            this.IsAccessible = true;
        }
示例#6
0
 private void meanToolStripMenuItem_Click(object sender, EventArgs e)
 {
     OperationsForm f = new OperationsForm(((MDIForm)ActiveMdiChild), Operations.MeanFilter);
     this.IsAccessible = false;
     f.ShowDialog();
     this.IsAccessible = true;
 }