treeview

  1. M

    open a new "Form" from a "TreeView"?

    Dear all, I am really new in C#. I want to open a new "From" by clicking on a "Node in a Treeview". Is there anybody who could kindly help me? Best wishes
  2. Jalkhov

    Question Omit Parent Node in Treeview

    I have the following code private void ListDirectory(TreeView treeView, string path) { treeView.Nodes.Clear(); var rootDirectoryInfo = new DirectoryInfo(path); treeView.Nodes.Add(CreateDirectoryNode(rootDirectoryInfo)); } private static TreeNode CreateDirectoryNode(DirectoryInfo...
Back
Top Bottom