예제 #1
0
        private void SetForModulationKrystal(ModulationKrystal mk)
        {
            MissingValues.Text = "Missing Values:  " + _krystal.MissingValues;
            Shape.Text = "Shape:  " + _krystal.Shape;

            StrandsTreeView.Nodes.Clear();
            ModulationTreeView modulationTreeView = new ModulationTreeView(StrandsTreeView, mk);
            mk.Modulate();
            modulationTreeView.DisplayModulationResults(mk);
            StrandsTreeView.ExpandAll();
        }
예제 #2
0
 private void SetForModulationKrystal(ModulationKrystal mk)
 {
     this.Controls.Remove(LineStrandLabel);
     ModulationTreeView modulationTreeView = new ModulationTreeView(StrandsTreeView, mk);
     mk.Modulate();
     modulationTreeView.DisplayModulationResults(mk);
     StrandsTreeView.ExpandAll();
     this.Height = Screen.GetWorkingArea(this).Height;
 }