refillMappings() public method

public refillMappings ( TreeView theRes ) : void
theRes System.Windows.Forms.TreeView
return void
Esempio n. 1
0
        private void mnuShowMappings_Click(object sender, EventArgs e)
        {
            if (TV.Nodes.Count > 0)
            {
                frmMappings theResults = new frmMappings();

                theResults.refillMappings(TV);

                DialogResult theEnd = theResults.ShowDialog();
            }
        }