refillMappings() 공개 메소드

public refillMappings ( TreeView theRes ) : void
theRes System.Windows.Forms.TreeView
리턴 void
예제 #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();
            }
        }