TreeView

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hello,

i have a treeview in my form a bit like the one in MS outlook on the left
(if you know what i mean) i want a user to click a node and something happens
(i can handle that something). my problem is: how do i get a click event for
a single node not the whole treeview itself???
 
Hi,
Node-level click event is available only in .NET 2.0.

message hello,

i have a treeview in my form a bit like the one in MS outlook on the left
(if you know what i mean) i want a user to click a node and something
happens
(i can handle that something). my problem is: how do i get a click event for
a single node not the whole treeview itself???
 
Hi,
Try AfterSelect event and use e.Node to find node...

--
HTH

Thanks,
Yunus Emre ALPÖZEN
BSc, MCSD.NET
 
hi there,

i have the .net framework 2.0 but when you edit the nodes on a treeview,
there is not events menu. how do i tell a node that it's click event is
node1_click?
 
Oh.., I think I misunderstood the question :-( I meant the NodeMouseClick
event, but it's not at the node level though.

message hi there,

i have the .net framework 2.0 but when you edit the nodes on a treeview,
there is not events menu. how do i tell a node that it's click event is
node1_click?
 
Alvo von Cossel I said:
hi there,

i have the .net framework 2.0 but when you edit the nodes on a treeview,
there is not events menu. how do i tell a node that it's click event is
node1_click?


That's why you better post such issues to the forums for whidbey
(http://forums.microsoft.com)
, this NG is to discuss the released versions of CSharp, the forums are
specially setup to help you with beta product issues.

Willy.
 
Back
Top