开发者

customizing treeview in winforms

开发者 https://www.devze.com 2023-02-20 20:39 出处:网络
Is it 开发者_运维技巧possible to create a treeview in visual studio which resembles the following figure :

Is it 开发者_运维技巧possible to create a treeview in visual studio which resembles the following figure :

customizing treeview in winforms

The ROOT , CHILD and Sub-Child , all three would be LinkLabels , and on clicking them a new Form would be opened.


You could also try embed WPF user control into WinForm. Customizing WinForms isn't an easy task. In WPF you can do it much easier.


You also can activate Hot tracking for the tree view and then handle the NodeMouseClick event.


This is not practical in Winforms, every Control has a native Windows window associated with it. A window is a very expensive operating system object, create more than 50 of them and your user interface will noticeably start to drag because of the amount of overhead involved in drawing the controls. You very quickly reach that practical upper limit by nesting controls like you are intending to do.

You can customize the appearance of a TreeView by using its DrawMode property and the DrawNode event. The MSDN library article for TreeView.DrawNode has a decent example. It is also a popular component type in 3rd party component vendor collections. They add lots of bells and whistles to their version.


So, people don't like doing it.

The answer, however, is Yes, you can.

TreeView treeView1;

void Initialize_It() {
  treeView1 = new TreeView();
  treeView1.AfterSelect += new TreeViewEventHandler(treeView1_AfterSelect);
  TreeNode Root = treeView1.Nodes.Add("ROOT");
  TreeNode Child = Root.Nodes.Add("CHILD");
  TreeNode SubChild = Child.Nodes.Add("Sub-Child");
}

void treeView1_AfterSelect(object sender, TreeViewEventArgs e) {
  const string FORMAT = "{0} Node Selected. Call your Windows Form from here.";
  if (e.Node.Level == 0) {
    MessageBox.Show(string.Format(FORMAT, e.Node.Text), e.Node.Text);
  } else if (e.Node.Level == 1) {
    MessageBox.Show(string.Format(FORMAT, e.Node.Text), e.Node.Text);
  } else if (e.Node.Level == 2) {
    MessageBox.Show(string.Format(FORMAT, e.Node.Text), e.Node.Text);
  }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消