Ejemplo n.º 1
0
        /* Filter Set Management */
        /*************************/
        private void DownCamera_FilterSet_SelectedIndexChanged(object sender, EventArgs e)
        {
            var cb   = (ComboBox)sender;
            var list = downSet.GetSet(cb.SelectedItem.ToString());

            if (list != null)
            {
                currentDownBinding = list; //local copy
                dFilter_dataGridView.DataSource = currentDownBinding;
                downVideoProcessing.SetFunctionsList(currentDownBinding);
                Console.WriteLine("new downcamera set = " + currentDownBinding.GetHashCode());
            }
        }