Beispiel #1
0
        private void ZipVal_ValueChanged(object sender, EventArgs e)
        {
            double val = (double)ZipVal.Value / 100.0F;

            dontHandle = false;
            Value.Text = val.ToString();
            iw.setBitmap(prevImg);
            iw.Gamma(ZipVal.Value);
        }
Beispiel #2
0
        public Gamma(ImageWindow iw)
        {
            InitializeComponent();
            this.iw = iw;
            MdiParent = iw.MdiParent;
            Text = Text + " " + iw.Text;
            prevImg = iw.getBitmap();

            iw.Gamma(ZipVal.Value);
            Show();
        }
Beispiel #3
0
        public Gamma(ImageWindow iw)
        {
            InitializeComponent();
            this.iw   = iw;
            MdiParent = iw.MdiParent;
            Text      = Text + " " + iw.Text;
            prevImg   = iw.getBitmap();


            iw.Gamma(ZipVal.Value);
            Show();
        }