I have a TreeView in the left side of a SplitContainer and I would like the content on the right side to change when I click on a TreeNode. What I'm trying to do is a settings "window" such as the one in Putty, i.e. te content in the right side can be quite complex.

Putty

The idea I have is to have a panel for content for each tree node, add all those panels to the right side and show/hide them based on clicks on the tree view.

Is this the right approach? Is there a better one? What is the best way to link the tree nodes to with their panels, e.g some kind of MVC?

thank you

Tom

link|improve this question

By far the simplest way to implement this in Winforms is with a TabControl, minus the tabs: stackoverflow.com/questions/2340566/… – Hans Passant Feb 18 at 14:30
feedback

2 Answers

up vote 1 down vote accepted

My blog post, Implementing a Paged Options Dialog, might give you some hints.

link|improve this answer
thanks, thats brilliant – scibuff Feb 18 at 16:13
feedback

You can have multiple panels with individual designers that accept a context object to fill or save the related settings Then in your TreeView you can use the Tag property of each node to maintain the related panel and when it is selected show the panel in right panel.

Here's some code :

interface ISettingPanel
{
SettingContext Context{get;set;}
}

public BasicSettingPanel:Panel,ISettingPanel
{
....
}

public void InitTreeView
{
var node=new TreeNode();
node.Tage=new BasicSettingPanel();// or you can set the type to create the panel later
treeView.Nodes.Add(node);
}

public void AfterNodeSelected()
{
_currentPanel=null;
var selectedNode=treeView.SelectedNode;
var panel=selectedNode.Tag as Panel;
if(panel!=null)
_currentPanel=panel;
(_currentPanel as ISettingPanel).Context=this.Context;
}
link|improve this answer
sweet, thank you – scibuff Feb 18 at 16:13
you're welcome :) – Beatles1692 Feb 18 at 23:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.