About 52 results
Open links in new tab
  1. How to create a tree view with checkboxes in Python

    11 I made a treeview class with checkboxes inheriting ttk.Treeview, but the checkboxes are not ttk.Checkbutton but images of checked, unchecked and tristate checkboxes.

  2. c# - Customize treeview - Stack Overflow

    Mar 22, 2017 · Is there a way to customize a winform treeview to get something like ? The purpose is to have one color by parent item an define a triangle instead of +/- icons to develop …

  3. c# - How to create a tree view in uwp xaml - Stack Overflow

    Dec 13, 2022 · Please use the TreeView Control from the WinUI library in your UWP aplication. In the Solution Explorer, right click on your project name and select Manage NuGet Packages.

  4. c# - Populate TreeView from DataBase - Stack Overflow

    I have a database table (named Topics) which includes these fields : topicId name parentId and by using them I wanna populate a TreeView in c#. How can I do that ? Thanks in advance...

  5. c# - TreeView search - Stack Overflow

    Jan 21, 2016 · Collect all of the nodes into a List<TreeNode> Page through the List<TreeNode> if the search hasn't changed. If the Search has changed, clear out the list and reset the …

  6. How to access the child elements of a TreeViewItem

    Apr 11, 2018 · I am trying to add a search feature to a TreeView in WPF. I was successfully able to add and search the tree items for a TreeView which has just one level, but for a TreeView …

  7. Customizing the TreeView to allow multi select - Stack Overflow

    The built-in WPF TreeView control does not allow for multi selection, like a ListBox does. How can I customize the TreeView to allow for multi selection without rewriting it.

  8. c# - Move Node in Tree up or Down - Stack Overflow

    Feb 4, 2010 · What is the most accurate way to move a node up and down in a treeview. I got a context menu on each node and the selected node should be moved with all its subnodes. I'm …

  9. c# - How do you get the root node or the first level node of the ...

    Jan 19, 2017 · That command alters the display of the treeview. Showing expanding the node. The question (IMHO) was aking how to get the root node, of the selected node, as an object in …

  10. c# - populate treeview from a list of path - Stack Overflow

    Suspect it's due to adding each node to the treeview one at a time. I've got nearly 20k paths from our work item management system and this approach ends up throwing …