ArcGISCompare.frmMappings.refillResults C# (CSharp) Метод

refillResults() публичный Метод

public refillResults ( TreeView theRes ) : void
theRes System.Windows.Forms.TreeView
Результат void
        public void refillResults(TreeView theRes)
        {
            lblTitle.Text = "The complete list of Results";
              this.Text = "All Detected Results";

              tvResults.Nodes.Clear();

              for (int i = 0; i < theRes.Nodes.Count; i++)
              {
            TreeNode newNode = (TreeNode)theRes.Nodes[i].Clone();
            tvResults.Nodes.Add(newNode);
              }
        }