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

public GetNodeIndexPath ( TreeNode t ) : string
t System.Windows.Forms.TreeNode
Результат string
Пример #1
0
        private void tv1_AfterSelect(object sender, TreeViewEventArgs e)
        {
            string path = SceneMan.GetNodeIndexPath(e.Node);

            status.Text = path;
            SceneMan.ProcessTreeClick(path, FocusOnClick);
        }