active questions tagged treeview - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T06:10:59Zhttp://stackoverflow.com/feeds/tag/treeviewhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1931744/treeview-node-mapping-in-winform1TreeView node mapping in winformBenny2009-12-19T02:31:42Z2009-12-19T03:50:08Z
<p>I have a treeview control, and it's child node is mapped to element in a list, when the element in the list state changes, i need to update the corresponding treeview node, also, when user select a treenode, i can map to the element in the list, what's the best way to record the mapping?</p>
http://stackoverflow.com/questions/1930154/wpf-treeview-with-isvirtualizingtrue-jumps-around-when-changing-focus-and-scro1WPF TreeView with IsVirtualizing="true" jumps around when changing focus and scrollingGeorge2009-12-18T19:14:35Z2009-12-19T02:04:17Z
<p>I've made a simple example to reproduce a problem I'm having with the TreeView. If I select an item in the TreeView, scroll down, change the focus, and then select an item in the TreeView again, the list starts jumping around.</p>
<p>This only happens if I have VirtualizingStackPanel.IsVirtualizing="True". Is this a known problem? Is there a work around?</p>
<p>So to reproduce:</p>
<ol>
<li>select Item 1 in the list. </li>
<li>scroll down to the bottom of the list </li>
<li>click the TextBox up top. </li>
<li>select Item 30 in the list</li>
</ol>
<p>I'm using .Net 3.5 SP1 and I've tried it for 64bit XP and Vista. I haven't tried it on other environments.</p>
<p>Update: I've tested in .Net 4.0 Beta and the issue doesn't occur. Is there a hotfix somewhere?</p>
<p><hr></p>
<pre><code><Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<Grid>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<TextBox Grid.Row="0"></TextBox>
<TreeView Grid.Row="1"
VirtualizingStackPanel.IsVirtualizing="True"
VirtualizingStackPanel.VirtualizationMode="Standard"
>
<TreeView.Items>
<TreeViewItem Header="Header 1" IsExpanded="True">
<TreeViewItem.Items>
<TreeViewItem Header="Item 1" />
<TreeViewItem Header="Item 2" />
<TreeViewItem Header="Item 3" />
<TreeViewItem Header="Item 4" />
<TreeViewItem Header="Item 5" />
<TreeViewItem Header="Item 6" />
<TreeViewItem Header="Item 7" />
<TreeViewItem Header="Item 8" />
<TreeViewItem Header="Item 9" />
<TreeViewItem Header="Item 10" />
<TreeViewItem Header="Item 11" />
<TreeViewItem Header="Item 12" />
<TreeViewItem Header="Item 13" />
<TreeViewItem Header="Item 14" />
<TreeViewItem Header="Item 15" />
<TreeViewItem Header="Item 16" />
<TreeViewItem Header="Item 17" />
<TreeViewItem Header="Item 18" />
<TreeViewItem Header="Item 19" />
<TreeViewItem Header="Item 20" />
<TreeViewItem Header="Item 21" />
<TreeViewItem Header="Item 22" />
<TreeViewItem Header="Item 23" />
<TreeViewItem Header="Item 24" />
<TreeViewItem Header="Item 25" />
<TreeViewItem Header="Item 26" />
<TreeViewItem Header="Item 27" />
<TreeViewItem Header="Item 28" />
<TreeViewItem Header="Item 29" />
<TreeViewItem Header="Item 30" />
</TreeViewItem.Items>
</TreeViewItem>
</TreeView.Items>
</TreeView>
</Grid>
</Window>
</code></pre>
<p>Any help would be much appreciated!!!</p>
http://stackoverflow.com/questions/1869979/populating-a-treeview-recursively-a-complicated-case-2Populating a treeview recursively (a complicated case)Anon2009-12-08T21:31:33Z2009-12-18T18:22:27Z
<p>I have some serious problems with populating a treeview recursively and I'll apreciate any help.</p>
<p>I have this DataTable:</p>
<pre>
ItemID ItemDesc Project Room Closet
Item1 Item1Desc Project1 RoomE Closet-7
Item2 Item2Desc Project1 RoomW Closet8
Item3 Item3Desc Project1 RoomW Closet8
Item4 Item4Desc Project1 RoomN Closet2
Item5 Item5Desc Project1 RoomN Closet9
Item6 Item6Desc Project2 RoomN Closet2
Item7 Item7Desc Project2 RoomW Closet9
</pre>
<p>I want to create a TreeView like this:</p>
<ul>
<li>Project1<br>
<ul>
<li>RoomE<br>
<ul>
<li>Closet7<br>
<ul>
<li>Item1Desc</li>
</ul></li>
</ul></li>
<li>RoomW<br>
<ul>
<li>Closet8<br>
<ul>
<li>Item2Desc </li>
<li>Item3Desc </li>
</ul></li>
</ul></li>
<li>RoomN<br>
<ul>
<li>Closet2<br>
<ul>
<li>Item4Desc </li>
</ul></li>
<li>Closet9<br>
<ul>
<li>Item5Desc </li>
</ul></li>
</ul></li>
</ul></li>
<li>Project2<br>
<ul>
<li>RoomN<br>
<ul>
<li>Closet2<br>
<ul>
<li>Item6Desc </li>
</ul></li>
</ul></li>
<li>RoomW<br>
<ul>
<li>Closet2<br>
<ul>
<li>Item7Desc </li>
</ul></li>
</ul></li>
</ul></li>
</ul>
<p>The way I'm trying to databind the treeview is using </p>
<pre><code>private List<treeDataItem> treeData = new List<treeDataItem>();
mytreeView.DataFieldID = "ID";
mytreeView.DataFieldParentID = "ParentID";
mytreeView.DataTextField = "Text";
mytreeView.DataValueField = "Value";
mytreeView.DataSource = treeData;
mytreeView.DataBind();
</code></pre>
<p>I'm trying to loop thru the DataTable so I can populate treeData but i can't enter the ParentIDs correctly. </p>
<p>Also, to make things complicated the number of fields in the DataTable are variable.<br>
Which means that I can have more fields that identify an item like a "Closet Drawer" and then maybe a "Closet Drawer Section", etc. </p>
<p>So the DataTable can one time be like:</p>
<pre>
ItemID ItemDescription Project Room Closet Closet Drawer
</pre>
<p>And another time like: </p>
<pre>
ItemID ItemDescription Project Room Closet Closet Drawer Closet Drawer Section
</pre>
<p>based on user selection. </p>
<p>Here's the treeDataItem class: </p>
<pre><code>internal class treeDataItem
{
public string Text { get; set; }
public int ID { get; set; }
public int ParentID { get; set; }
public Guid Value { get; set; }
public treeDataItem(int id, int parentId, string text, string value)
{
ID = id;
ParentID = parentId;
Text = text;
Value = value;
}
}
</code></pre>
http://stackoverflow.com/questions/1905995/wpf-select-treeviewitem-broken-past-the-root-level0WPF: Select TreeViewItem broken past the root levelEchilon2009-12-15T08:38:38Z2009-12-18T09:54:57Z
<p>I'm trying to select a TreeViewItem by ID, but having problems getting it to work past the first (root) level. I've done so much reading round on this and am using the method below. </p>
<pre><code>private static bool SetSelected(ItemsControl parent, INestable itemToSelect) {
if(parent == null || itemToSelect == null) {
return false;
}
foreach(INestable item in parent.Items) {
if(item.ID == itemToSelect.ID) { // just comparing instances failed
TreeViewItem container = parent.ItemContainerGenerator.ContainerFromItem(item) as TreeViewItem;
if(container != null) {
container.IsSelected = true;
container.Focus();
return true;
}
}
ItemsControl childControl = parent.ItemContainerGenerator.ContainerFromItem(item) as ItemsControl;
if(SetSelected(childControl, itemToSelect))
return true;
}
return false;
}
</code></pre>
<p>INestable is the base level interface, implemented by IGroup and IAccount:</p>
<pre><code>public interface INestable {
string ID { get; set; }
...
}
public interface IAccount : INestable {
...
}
public interface IGroup : INestable {
public IList<INestable> Children
...
}
</code></pre>
<p>I think it must have something to do with the datatemplates (perhaps):</p>
<pre><code><HierarchicalDataTemplate DataType="{x:Type loc:IGroup}" ItemsSource="{Binding Children}" x:Key="TreeViewGroupTemplate">
<HierarchicalDataTemplate DataType="{x:Type loc:IAccount}" x:Key="TreeViewAccountTemplate">
The Template selector for the treeview returns thr group template for IGroups and the account template for IAccounts:
<conv:TreeTemplateSelector x:Key="TreeTemplateSelector" AccountTemplate="{StaticResource TreeViewAccountTemplate}" GroupTemplate="{StaticResource TreeViewGroupTemplate}"/>
<TreeView ItemTemplateSelector="{StaticResource TreeTemplateSelector}">
</code></pre>
<p>It works for all top level items, just nothing below that, and debugging confirms parent.ItemContainerGenerator does contain the items for all levels.</p>
<p>I know there's a lot of code but I'm burning through hours trying to get this to work. Thanks for any help. :)</p>
http://stackoverflow.com/questions/1924030/programmatically-toggle-a-jquery-treeview-item0Programmatically toggle a jquery treeview item?sieben2009-12-17T19:31:28Z2009-12-17T20:02:56Z
<p>Hey,</p>
<p>I have a jquery treeview as navigation for a website. I am using the options:</p>
<pre><code>unique:true,
collapsed:true
</code></pre>
<p>but I need to have the first item expanded. I also would like to be able to toggle states in certain functions.</p>
<p>How can i programmatically toggle a jquery treeview item?</p>
<p>I have read the <a href="http://docs.jquery.com/Plugins/Treeview" rel="nofollow">documentation</a> and searched everywhere, but I can't figure it out. My javascript/jquery skills are not great, so I can't figure out how to add this feature myself.</p>
<p>Any help would be appreciated, thanks!</p>
<h3>Update:</h3>
<p>I spent so long looking at the options/source code I didn't see the "closed" class right there in the intro page. That helps a lot!</p>
<p>also, I found that using (pointed in the right direction by Chris Gutierrez):</p>
<pre><code>$('#tree div.expandable-hitarea:first').click();
</code></pre>
<p>works to expand that item! Now, I just have to create my own toggle functions.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1922607/scrolling-to-selected-treeviewitem-within-a-scrollview1Scrolling to selected Treeviewitem within a scrollview.Albert Oldfield2009-12-17T15:40:51Z2009-12-17T15:46:24Z
<p>I have a scrollviewer wrapping a treeview. </p>
<p>I populate the treeview programmatically (it is not bound), and expand the treeview to a predetermined treeviewitem. That all works fine. </p>
<p>My problem is that when the tree expands I would like the scrollview that parents the treeview to scroll to the treeviewitem that I just expanded. Any ideas? - keep in mind that the treeview may not have the same structure each time it is expanded, so that rules out just storing the current scroll position and reseting to that...</p>
http://stackoverflow.com/questions/725883/wpf-custom-in-treeview2WPF: Custom +- in TreeViewlevik2009-04-07T14:00:26Z2009-12-17T09:35:29Z
<p>Hi all,</p>
<p>It's possible to change the built-in collapse-expand icons of TreeView control (+-) to my own icons?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1912481/wpf-treeview-hierarchicaldatatemplate-binding-to-object-with-multiple-child-col0WPF TreeView HierarchicalDataTemplate - binding to object with multiple child collectionslongday2009-12-16T05:21:19Z2009-12-16T06:19:22Z
<p>I am trying to get a treeview to bind my collection so that all groups show nested groups and each group will show entry.</p>
<p>How can I use the HierarchicalDataTemplate so that treeview will process both SubGroups and Entries collection?</p>
<p>Groups show subgroups and entries</p>
<pre><code>Example:
Group1
--Entry
--Entry
Group2
--Group4
----Group1
------Entry
------Entry
----Entry
----Entry
--Entry
--Entry
Group3
--Entry
--Entry
</code></pre>
<p><br></p>
<h2>objects</h2>
<p><hr /></p>
<pre><code>namespace TaskManager.Domain
{
public class Entry
{
public int Key { get; set; }
public string Name { get; set; }
}
}
namespace TaskManager.Domain
{
public class Group
{
public int Key { get; set; }
public string Name { get; set; }
public IList<Group> SubGroups { get; set; }
public IList<Entry> Entries { get; set; }
}
}
</code></pre>
<h2>Test data</h2>
<p><hr />
namespace DrillDownView
{
public class TestData
{</p>
<pre><code> public IList<Group> Groups = new List<Group>();
public void Load()
{
Group grp1 = new Group() { Key = 1, Name = "Group 1", SubGroups = new List<Group>(), Entries = new List<Entry>() };
Group grp2 = new Group() { Key = 2, Name = "Group 2", SubGroups = new List<Group>(), Entries = new List<Entry>() };
Group grp3 = new Group() { Key = 3, Name = "Group 3", SubGroups = new List<Group>(), Entries = new List<Entry>() };
Group grp4 = new Group() { Key = 4, Name = "Group 4", SubGroups = new List<Group>(), Entries = new List<Entry>() };
//grp1
grp1.Entries.Add(new Entry() { Key=1, Name="Entry number 1" });
grp1.Entries.Add(new Entry() { Key=2, Name="Entry number 2" });
grp1.Entries.Add(new Entry() { Key=3,Name="Entry number 3" });
//grp2
grp2.Entries.Add(new Entry(){ Key=4, Name = "Entry number 4"});
grp2.Entries.Add(new Entry(){ Key=5, Name = "Entry number 5"});
grp2.Entries.Add(new Entry(){ Key=6, Name = "Entry number 6"});
//grp3
grp3.Entries.Add(new Entry(){ Key=7, Name = "Entry number 7"});
grp3.Entries.Add(new Entry(){ Key=8, Name = "Entry number 8"});
grp3.Entries.Add(new Entry(){ Key=9, Name = "Entry number 9"});
//grp4
grp4.Entries.Add(new Entry(){ Key=10, Name = "Entry number 10"});
grp4.Entries.Add(new Entry(){ Key=11, Name = "Entry number 11"});
grp4.Entries.Add(new Entry(){ Key=12, Name = "Entry number 12"});
grp4.SubGroups.Add(grp1);
grp2.SubGroups.Add(grp4);
Groups.Add(grp1);
Groups.Add(grp2);
Groups.Add(grp3);
}
}
</code></pre>
<p>}</p>
<h2>XAML</h2>
<p><hr /></p>
<p>
</p>
<pre><code> <TreeView Name="GroupView" Grid.Row="0" Grid.Column="0" ItemsSource="{Binding}">
<TreeView.Resources>
<HierarchicalDataTemplate DataType="{x:Type local:Group}" ItemsSource="{Binding SubGroups}">
<TextBlock Text="{Binding Path=Name}" />
</HierarchicalDataTemplate>
<HierarchicalDataTemplate DataType="{x:Type local:Entry}" ItemsSource="{Binding Entries}">
<TextBlock Text="{Binding Path=Name}" />
</HierarchicalDataTemplate>
</TreeView.Resources>
</TreeView>
</Grid>
</code></pre>
<p></p>
<h2>XAML.CS</h2>
<p><hr /></p>
<pre><code>public partial class Window2 : Window
{
public Window2()
{
InitializeComponent();
LoadView();
}
private void LoadView()
{
TestData data = new TestData();
data.Load();
GroupView.ItemsSource = data.Groups;
}
}
</code></pre>
http://stackoverflow.com/questions/1912159/java-nested-tree-structure2Java: Nested Tree StructureSteve2009-12-16T03:54:10Z2009-12-16T04:16:19Z
<p>I am looking for a way to create a nested tree structure in my GUI. I have a few "boxes" that have items in them. I would like the boxes to be collapsed but expanded when clicked on, like the way folders are navigated on the sidebar. The first way I considered was treating the "boxes" as JList, with the items in each box stored in a nested JList. This seems like a very complicated and poor way of doing it. It also prevents the boxes from being collapsible without extensive modifications to the actionlistener. I was hoping someone might know of an API perhaps for displaying file navigation that might be used here.</p>
http://stackoverflow.com/questions/1905328/problem-with-link-styling-failures-in-asp-net-mvc0Problem with link styling failures in ASP.NET MVCRobert Harvey2009-12-15T05:22:18Z2009-12-15T16:02:16Z
<p>I have an ASP.NET MVC application that has a <a href="http://bassistance.de/jquery-plugins/jquery-plugin-treeview/" rel="nofollow">jQuery Treeview</a> and a <a href="http://methvin.com/splitter/" rel="nofollow">jQuery Splitter</a> in it. There is a header at the top. Below that, the splitter is used to <a href="http://methvin.com/splitter/vsplitter.html" rel="nofollow">separate the space into two divs</a>. The left div contains the <a href="http://jquery.bassistance.de/treeview/demo/simple.html" rel="nofollow">treeview</a>, and the right div contains the content.</p>
<p>I have a stylesheet just for the content area; all of the styling is prefixed with <code>#Content</code>, and the div that contains the content is <code>id="Content"</code>. Within that stylesheet, I have styled the <code><a></code> links so that <em>they're not underlined unless you hover over them.</em></p>
<p>Typically I put a table in the content area to display some grid-style data. Within the grid is a column of links to display detail. </p>
<p>Here is the problem. Most of the links in the content area will work properly (they will underline when you hover over them), but there are one or two links in the column that are failing their <code>a:link</code> style; they will be underlined on first display, and stay underlined whether they are hovered over or not.</p>
<p>This only happens when the page is rendered out of the ASP.NET MVC application. I am using the development web server in Visual Studio (Cassini) for testing. If I View/Source in the browser, save the page on my desktop, and fixup the links to the jQuery scripts and the style sheets, and view the page in the browser by clicking on the thusly saved page, the problem does not occur.</p>
<p>I have tried both Internet Explorer 7 and the latest version of Firefox, and the links <em>fail in exactly the same way</em>, but only when running the actual application. All of the styling works, except for <code><a:link></code> in the <code>#Content</code> div.</p>
<p>Has anyone seen these kind of random link styling failures before? I am at a loss. I don't understand why the page would work as advertised if I save it out of the browser and open it again, but it will not work from the application, regardless of browser. </p>
http://stackoverflow.com/questions/1217403/hierachical-data-in-treeviews-and-treeview-updating-technique2Hierachical data in TreeViews and TreeView updating techniqueJohn2009-08-01T20:20:45Z2009-12-15T03:06:56Z
<p>I have lots of (hierachical) data that I show in a TreeView (could be around 20K items or more, including children items). The peculiar problem with my data is that each object shown in the treeview can exist in many treeview items. What I mean by that is that I might have an hierarchy like this one:</p>
<ol>
<li><code>Item_A -> Item_B -> ItemC</code></li>
<li><code>Item_B -> Item_C</code></li>
<li><code>ItemC</code></li>
</ol>
<p>Lets assume that <code>Item_A</code> contains <code>Item_B</code> which contains <code>Item_C</code> as it is shown above. This means that my list will also show the hierarchy of <code>Item_B</code> and <code>Item_C</code>. Consider now that something happens to an an object shown as <code>Item_B</code> (e.g name change). Then of course both items
must be updated. Consider now thousands of items in the treeview with complex hierarchies. What strategy would you use to update the treeview? Speed is of course the main concern here but also ease of use and maintenance. Currently I hold internal mappings of list items to objects and vice-versa to find and update items quickly. Is that a correct strategy? By recreating the list after each update I can throw lots of code away, but I wouldn't know which item paths were expanded or collapsed. How could I solve this problem? Should I store expanded paths in an internal container? </p>
<p>Thank you. </p>
<p>PS: Programming language is C++, and GUI lib is QT3.</p>
http://stackoverflow.com/questions/1546117/problem-with-images-on-treeview0Problem with Images on TreeViewJonas2009-10-09T21:25:54Z2009-12-15T00:04:50Z
<p>I have a TreeView with ItemHeight=16 and CheckBoxes=true. I want to show images that are 8x16 pixels in size on the nodes. But when I do this, the "Plus/Minus" and "CheckBoxes" change their size (get smaller).</p>
<p>How can I fix this? I don't want to use a 16x16 image because I don't want to loose those 8 pixels with white space.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1902630/how-to-expand-all-nodes-of-a-wpf-treeview-in-code-behind0How to expand all nodes of a WPF treeview in code behind?Padu Merloti2009-12-14T18:30:34Z2009-12-14T18:40:58Z
<p>I might be suffering of Monday's dumbness, but I can't find a nice way of expanding all treeview nodes after I've added them in code behind (something like treeView.ExpandAll()).</p>
<p>Any quick help?</p>
http://stackoverflow.com/questions/1394494/jquery-treeview-with-sortable0jQuery treeview with sortableRemy2009-09-08T14:59:00Z2009-12-14T10:39:25Z
<p>Hi there,</p>
<p>I was just wondering if anyone knows of any way to get the bassistance treeview plugin to work with jQuery UI's sortable plugin? Particularly in terms of being able to drag and drop the element from it's nested ul to the parent ul or vice versa. Two other requirements are that I have the ability to prevent dropping onto specified elements (for example: element with class="no-drop"), and the ability to reference a function after the drop event.</p>
<p>If there is no real feasible way of doing this with those plugins, does anyone happen to know of another plugin?</p>
<p>Kind Regards,
Remy</p>
http://stackoverflow.com/questions/1898463/wpf-bound-treeview-not-updating-root-items0WPF - Bound treeview not updating root itemsJivlain2009-12-14T01:11:39Z2009-12-14T07:15:10Z
<p>I'm using a WPF TreeView control, which I've bound to a simple tree structure based on ObservableCollections. Here's the XAML:</p>
<pre><code>
<TreeView Name="tree" Grid.Row="0">
<TreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding Path=Children}">
<TextBlock Text="{Binding Path=Text}"/>
</HierarchicalDataTemplate>
</TreeView.ItemTemplate>
</TreeView>
</code></pre>
<p>And the tree structure:</p>
<pre><code>
public class Node : IEnumerable {
private string text;
private ObservableCollection<Node> children;
public string Text { get { return text; } }
public ObservableCollection<Node> Children { get { return children; } }
public Node(string text, params string[] items){
this.text = text;
children = new ObservableCollection<Node>();
foreach (string item in items)
children.Add(new Node(item));
}
public IEnumerator GetEnumerator() {
for (int i = 0; i < children.Count; i++)
yield return children[i];
}
} </code></pre>
<p>I set the ItemsSource of this tree to be the root of my tree structure, and the children of that become root-level items in the tree (just as I want):</p>
<pre><code>
private Node root;
root = new Node("Animals");
for(int i=0;i<3;i++)
root.Children.Add(new Node("Mammals", "Dogs", "Bears"));
tree.ItemsSource = root;
</code></pre>
<p>I can add new children to the various non-root nodes of my tree structure, and they appear in the TreeView right where they should.</p>
<pre><code>root.Children[0].Children.Add(new Node("Cats", "Lions", "Tigers")); </code></pre>
<p>But, if I add a child to the root node:</p>
<pre><code>root.Children.Add(new Node("Lizards", "Skinks", "Geckos")); </code></pre>
<p>The item does not appear, and nothing I've tried (such as setting the ItemsSource to null and then back again) has caused it to appear.</p>
<p>If I add the lizards before setting the ItemsSource, they show up, but not if I add them afterwards.</p>
<p><img src="http://imgur.com/Ue6K1.png" alt="The cats appear, but not the lizards"></p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1896831/how-do-i-bind-a-treeview-node-to-a-specific-view-in-an-explorer-like-ui0How do I bind a TreeView node to a specific view in an Explorer-like UI?dkackman2009-12-13T15:32:58Z2009-12-13T15:54:37Z
<p>I'm sure there is a simple answer to this but I can't seem to find it. Most examples for binding TreeView nodes are about using a ListView to show the node's details. In the scenario I am working on I've got a TreeView data bound to an Xml document using a simple MVVM pattern. As each node is selected in the TreeView I want to show a different UserControl for the type of XmlNode being represented.</p>
<ul>
<li>What is the best control for hosting the different View's? (ViewBox, Panel?)</li>
<li>What's the best way to bind the view to the Selection in the treeview?</li>
</ul>
<p>Thanks</p>
http://stackoverflow.com/questions/1895953/treeview-checkbox-menus0treeview checkbox menusyogsma2009-12-13T08:56:46Z2009-12-13T09:52:25Z
<p>well, I am trying to write parallel checkbox menus in html, but somehow my logic is not helping. May be some of you experts can just help me a bit. This is how I want my menus to look</p>
<pre><code>[] Menu 1 [] Menu 2
[] Item 1 [] Item 5
[] Item 2 [] Item 4
</code></pre>
<p>Item 1, 2 are under Menu 1 and 5,4 are under Menu 2. Square brackets indicate checkboxes.
Items under menus are actually collected dynamically and their numbers under different menus can vary. </p>
http://stackoverflow.com/questions/1895874/binding-wpf-treeview-with-generic-viewmodel0Binding WPF TreeView with generic viewmodelWpf Newbie2009-12-13T07:54:10Z2009-12-13T09:26:35Z
<p>Hi,
I have a usercontrol which contains a TreeView control. I am using MVVM pattern.
I want to reuse this user control in different windows, each time binding the usercontrol to a different datacontext.</p>
<pre><code> <UserControl Name="UserControl1".......>
..............
<TreeView ItemSource={Binding ...}...>
<HierarchicalDataTemplate...........\>
</TreeView>
..............
</UserControl>
</code></pre>
<p>In window 1, I want to bind a <code>List<ObjectA></code> to the TreeView.</p>
<p>In Window 2, I want to bind a <code>List<ObjectB></code> to the TreeView.</p>
<p>Is it possible to write a generic ViewModel for this usercontrol, so that I can bind different Types of data to the TreeView??
In case my question is not understood, please do let me know.</p>
http://stackoverflow.com/questions/1888106/c-winforms-detect-real-visibility-of-treeview0c# WinForms Detect real visibility of TreeViewTarion2009-12-11T13:34:05Z2009-12-12T19:53:51Z
<p>Hi,
I have a WinForms TreeView and a tree, built from custom node objects which inherits TreeNode the problem is that these nodes can be displayed in only one tree at the time.
Now I have multiple controls with a TreeView that should display these nodes. How can I indicate that the treeView is displayed?
I can catch the VisibleChanged event but I don't know how to detect if the TreeView is really visible (The visible property does not change!).</p>
<p>I know that one solution can be to wrap my data in TreeNode objects and not using inheritance from TreeNode. But I hope there is a faster solution.</p>
http://stackoverflow.com/questions/1883820/axapta-programmatically-switch-records-in-a-form0Axapta: Programmatically switch records in a formBrad2009-12-10T20:33:24Z2009-12-11T05:54:18Z
<p>In Dynamics AX 2009, how do you programmatically change to a different record in a form?</p>
<p>My form contains a treeview and a group of bound data fields. When clicking on a record in the tree (the data value for each item in the tree is the RecId of the item I'd like to edit in the form) I'd like to change the form to that record.</p>
<p>I've been using sysSetupForm as an example for working with a tree, but I'm having trouble isolating where the call to change records occurs in their code.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1880930/easy-object-binding-to-treeview-node0Easy object binding to Treeview NodeKai2009-12-10T13:20:57Z2009-12-10T17:30:06Z
<p>How can I bind an object to a treeview (Winforms) node in C#?</p>
<p>I thought of something like ExNode : Windows.Forms.Node that can take an object as member besides the treenode name... however I am not sure that is the right approach.</p>
http://stackoverflow.com/questions/1881055/treeview-in-winforms-and-focus-problem0TreeView in Winforms and focus problemMarcus2009-12-10T13:42:40Z2009-12-10T14:23:47Z
<p>Hi,</p>
<p>Can anyone please explain to my why the form in the code below gets out of focus when selecting a treenode in the tree? What should happen is that the form/button should get the focus when the tree disappears like the listview example but it doesn't.</p>
<p>Code example:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace FocusTest
{
public partial class Form1 : Form
{
#region Generated
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("Item1");
System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("Item2");
System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("Item3");
System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Node0");
System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Node1");
System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Node2");
this.button1 = new System.Windows.Forms.Button();
this.listView1 = new System.Windows.Forms.ListView();
this.button2 = new System.Windows.Forms.Button();
this.treeView1 = new System.Windows.Forms.TreeView();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(12, 12);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 0;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// listView1
//
this.listView1.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
listViewItem1,
listViewItem2,
listViewItem3
});
this.listView1.Location = new System.Drawing.Point(12, 41);
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(121, 97);
this.listView1.TabIndex = 1;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.Visible = false;
this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
this.listView1.View = View.List;
//
// button2
//
this.button2.Location = new System.Drawing.Point(310, 11);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 2;
this.button2.Text = "button2";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// treeView1
//
this.treeView1.Location = new System.Drawing.Point(310, 41);
this.treeView1.Name = "treeView1";
treeNode1.Name = "Node0";
treeNode1.Text = "Node0";
treeNode2.Name = "Node1";
treeNode2.Text = "Node1";
treeNode3.Name = "Node2";
treeNode3.Text = "Node2";
this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
treeNode1,
treeNode2,
treeNode3});
this.treeView1.Size = new System.Drawing.Size(121, 97);
this.treeView1.TabIndex = 3;
this.treeView1.Visible = false;
this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(760, 409);
this.Controls.Add(this.treeView1);
this.Controls.Add(this.button2);
this.Controls.Add(this.listView1);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.TreeView treeView1;
#endregion
public Form1()
{
InitializeComponent();
}
#region TreeView
private void button2_Click(object sender, EventArgs e)
{
ToggleTreeView();
}
private void ToggleTreeView()
{
if (treeView1.Visible)
{
Controls.Remove(treeView1);
treeView1.Visible = false;
}
else
{
Controls.Add(treeView1);
treeView1.Size = new Size(300, 400);
treeView1.Location = PointToClient(PointToScreen(new System.Drawing.Point(button2.Location.X, button2.Location.Y + button2.Height)));
this.treeView1.BringToFront();
treeView1.Visible = true;
treeView1.Select();
}
}
private void treeView1_AfterSelect(object sender, TreeViewEventArgs e)
{
ToggleTreeView();
}
#endregion
#region ListView
private void button1_Click(object sender, EventArgs e)
{
ToggleListView();
}
private void ToggleListView()
{
if (listView1.Visible)
{
Controls.Remove(listView1);
listView1.Visible = false;
}
else
{
Controls.Add(listView1);
listView1.Size = new Size(300, 400);
listView1.Location = PointToClient(PointToScreen(new System.Drawing.Point(button1.Location.X, button1.Location.Y + button1.Height)));
this.listView1.BringToFront();
listView1.Visible = true;
listView1.Select();
}
}
private void listView1_SelectedIndexChanged(object sender, EventArgs e)
{
if (listView1.Visible)
ToggleListView();
}
#endregion
}
}
</code></pre>
http://stackoverflow.com/questions/1826672/binding-to-a-single-element-inside-a-compositecollection2Binding to a single element inside a CompositeCollectionMojoFilter2009-12-01T14:50:07Z2009-12-10T13:59:42Z
<p>I am trying to produce a list of servers for browsing on a network such that it produces a tree view which looks like this:</p>
<pre><code>-Local Server
- Endpoint 1
- Endpoint 2
-Remote
- <Double-click to add a server...>
- Remote Server 1
- Endpoint 1
- Endpoint 2
- Remote Server 2
- Endpoint 1
- Endpoint 2
</code></pre>
<p>My ViewModel looks like this:</p>
<pre><code>...
public Server LocalServer;
public ObservableCollection<Server> RemoteServers;
...
</code></pre>
<p>So, how does one go about constructing the list in xaml with a binding to a single object <strong>and</strong> a list of objects? I might be thinking about it completely the wrong way, but what my brain really wants to be able to do is something like this:</p>
<pre><code><CompositeCollection>
<SingleElement Content="{Binding LocalServer}">
<!-- ^^ something along the lines of a ContentPresenter -->
<TreeViewItem Header="Remote">
<TreeViewItem.ItemsSource>
<CompositeCollection>
<TreeViewItem Header="&lt;Click to add...&gt;" />
<CollectionContainer Collection="{Binding RemoteServers}" />
</CompositeCollection>
</TreeViewItem.ItemsSource>
</TreeViewItem>
</CompositeCollection>
</code></pre>
<p>I feel like there must be a fundamental element I'm missing which keeps me from being able to specify what I want here. That single item has children. I did try using a ContentPresenter, but for whatever reason, it was not expandable even though it picked up the <code>HierarchicalDataTemplate</code> to display the title correctly.</p>
<p><hr></p>
<p><strong>Update</strong></p>
<p>So for now, I've exposed a property on the view model that wraps the single element in a collection so that a <code>CollectionContainer</code> may bind to it. I would really like to hear folks' ideas on how to do this, though. It seems awfully fundamental.</p>
http://stackoverflow.com/questions/1880562/how-to-get-node-types-in-a-tree-using-c0How to get Node Types in a tree using C#sag2009-12-10T12:09:25Z2009-12-10T12:57:59Z
<p>hi all,
i want to get the type of each node in a TreeView of a WPF.
please help me.</p>
http://stackoverflow.com/questions/1878482/make-dynamic-call-with-jquery-treevew0Make dynamic call with jquery-treevewBakudan2009-12-10T03:33:42Z2009-12-10T03:33:42Z
<p>I`m new to jquery. I wanted to make a db with some folder and files. The big question is how to make <a href="http://jquery.bassistance.de/treeview/demo/async.html" rel="nofollow">this</a> to call the source.php with the folder values and dynamicly add data?</p>
http://stackoverflow.com/questions/1878107/show-tree-lines-in-wpf0Show tree 'lines' in WPFDavid Brunelle2009-12-10T01:25:07Z2009-12-10T01:45:59Z
<p>Hi,</p>
<p>I have a treeView in WPF in which I have several level. When I expands the level, I would like to display dotted lines from the parent to the leaves so that it's more visual. However, it doesn't to be like that by default.</p>
<p>Is it possible, and if yes, how?</p>
<p>Thanks you.</p>
http://stackoverflow.com/questions/1865633/preventing-color-bleeding-with-stateimagelist-on-treeview1Preventing color bleeding with StateImageList on TreeViewleppie2009-12-08T08:55:10Z2009-12-09T15:09:03Z
<p>Hi</p>
<p>Does anyone have a solution for the color bleeding when using a StateImageList with a Windows Forms TreeView?</p>
<p>Using the same ImageList with assigned to the TreeView's ImageList property, results in correct rendering as can be seen by the following image.</p>
<p><img src="http://xacc.files.wordpress.com/2009/12/bleeding.png" alt="24 bit"></p>
<p>The state images are left, normal images are right. All images are sourced from the same ImageList instance.</p>
<p><strong>Update:</strong></p>
<p>I converted the images to 16 color indexed palette. Seems it does not like that either. Its a bit better, but still far from acceptable.</p>
<p><img src="http://xacc.files.wordpress.com/2009/12/bleeding4bit.png" alt="4 bit"></p>
http://stackoverflow.com/questions/1871169/silverlight-treegrid-treelist-functionality0Silverlight TreeGrid/TreeList functionalitySchneider2009-12-09T01:55:59Z2009-12-09T03:59:20Z
<p>Hi,</p>
<p>I have a requirement for a "Tree grid" or "Tree list" control.</p>
<p>This is something that looks like a DataGrid, but the left hand side is a tree that can be expanded and collapsed to show different rows (typically grouped, or perhaps showing data from a heirarchy).</p>
<p>Has anyone tried to build something like this by hand? If so do you recommend that route?</p>
<p>Or am I better of buying the control? If so who sells a good one?</p>
<p>We are targetting Silverlight 4 if that makes a difference</p>
<p><strong>UPDATE:</strong> This is the type of <a href="http://www.syncfusion.com/products/user-interface-edition/wpf/grid/minimal-gtc" rel="nofollow">control</a> I am looking for (but for SL obviously)</p>
http://stackoverflow.com/questions/1870644/how-to-get-the-treenode-under-mouse-cursor-when-the-mouse-is-down1How to get the TreeNode under mouse cursor when the mouse is down?Joan Venge2009-12-08T23:35:32Z2009-12-09T01:18:43Z
<p>Basically the TreeView has checkboxes, and I am able to get the TreeNode, but it gives me the TreeNode wherever I click on the TreeNode, from it's text to it's checkbox and a little beyond that (to the left).</p>
<p>Can I restrict the hittest so I only get a TreeNode if the user click on the checkbox of the TreeNode?</p>
http://stackoverflow.com/questions/1870455/how-to-get-treeview-behaviour-for-treenodes-that-when-you-check-one-it-checks-al0How to get TreeView behaviour for TreeNodes that when you check one, it checks all its children TreeNodes?Joan Venge2009-12-08T22:50:30Z2009-12-08T23:15:51Z
<p>This is the same as how most apps behave. I thought TreeView worked like that by default.</p>
<p>Is there a way to do this, or do I have to get all the children of a TreeNode that's checked and check them myself?</p>
<p>This is winforms.</p>