Search results for query "treeview" (13):
Simplifying the WPF TreeView by Using the ViewModel Pattern
This article explores how to use the ViewModel pattern to make it easier to work with the
TreeView control in WPF. Along the way, we examine why people often have difficulty with the WPF
TreeView, what a ViewModel is, and two demo applications that show how to combine a
TreeView with a ViewModel. One of the demos shows how to create a searchable
TreeView, the other demonstrates how to implement lazy-loading (a.k.a. load-on-demand).
Advanced ClientSide TreeView v1.5
This article explains the use of
TreeView control developed in JavaScript. As you all may be familiar with the existing ASP.net
TreeView provided with .Net framework, this control actually tries to mimic the same in coding style. So, developers who have worked on ASP.Net
TreeView control would find it much easier to implement.
ASTreeView - A Free TreeView Control for ASP.NET
A full functional
treeview control for ASP.NET, including drag and drop, Ajax loading, context menu, dropdown
treeview.
DataBound TreeView
A
TreeView that can be bound to a DataTable, and can keep track of changes in it.
A TreeView Control with ComboBox Dropdown Nodes
This article demonstrates how to use a ComboBox dropdown to select the text for nodes in a
TreeView.
Using the TreeView Control and a DataList to Create an Online Image Gallery
ASP.NET version 2.0 includes a wide array of Web controls not found in
previous versions. One such control is the TreeView, which is ideal for displaying hierarchical data. The TreeView control
can be bound to a hierarchical data source such as the XmlDataSource or SiteMapDataSource, or can be constructed programmatically.
One common source of hierarchical data is the web server's file system. In many scenarios, there may be a folder that contains
subfolders and files that the user needs to be able to browse. Using the classes in the System.IO namespace,
we can programmatically populate the TreeView with the directory structure of our website. Then, when the user clicks a folder,
the selected folder's files can be displayed.
In this article we will examine how to create a simple image gallery web page that's a breeze to maintain. The image gallery
lacks the bells and whistles found in more complex and feature-rich image galleries, but this one is a cinch to deploy and
maintain. We'll be using two Web controls: a TreeView to list the folders and subfolders in which the images reside; and
a DataList control that lists each image in the selected folder..
A User-Searchable TextBox, RichTextBox, ListView and TreeView in C#
A lightweight class library that extends the Framework's most popular editor controls to include search and other basic functionality.
An All VB.NET Explorer Tree Control with ImageList Management
Explorer
TreeView control with Shell Folder access class and Icon management.
Generic Dictionaries: Hidden Treasure of System.Collections.Generic
Generic dictionaries simplify common tasks, such as coordinating selection between a
TreeView and a ListView—but their capabilities extend far beyond that, once you realize you can use DynamicInvoke() to execute delegates stored in the dictionary.
Build Your Own Visual Studio: An Application Framework for Editing Objects at Runtime
This article describes a generic application framework that may be of some use in projects that would need an interface similar to Visual Studio. The application demonstrates approaches to providing a toolbox, a workspace, an object
treeview, and an object editor.