public HSDisplayForm(Form call)
 {
     main = call as HS_Form;
     InitializeComponent();
     textBox1.Text = this.main.flowinterval;
     textBox2.Text = this.main.threshold;
 }
Example #2
0
        private void Button1_Click(object sender, EventArgs e)
        {
            HS_Form      hornSchunck  = new HS_Form();
            DialogResult dialogresult = hornSchunck.ShowDialog();

            hornSchunck.Dispose();
        }
 public HSPyramidForm(Form call)
 {
     main = call as HS_Form;
     InitializeComponent();
     checkBox1.Checked      = this.main.pyramidON;
     numericUpDown1.Visible = checkBox1.Checked;
     label1.Visible         = checkBox1.Checked;
     numericUpDown1.Value   = this.main.pyramidLevel;
 }
        public HSParameters_Form(Form call)
        {
            main = call as HS_Form;
            InitializeComponent();
            numericUpDown1.Value = this.main.max_iteration;

            textBox1.Text = this.main.alpha;
            textBox2.Text = this.main.eps;
        }
 public HSPlayVideoForm(Form call)
 {
     main = call as HS_Form;
     InitializeComponent();
 }