Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Treeviews and Images

Status
Not open for further replies.

AccordingToDale

Programmer
Jul 11, 2005
128
CA
Hey there,

Does anyone know if you can use images in a treeview, but only for certain nodes?

As an example:

- root node (no image)
|
|- child node (with image)


So far I've only managed all or nothing.

Dale
 
You would think this would be possible, but I can see why it moght not be - if you don't set the ImageIndex for a node, it automatically uses the first image in the ImageList used for your tree.

I guess you could create a "blank" image in your ImageList, and set the node to use that image.

[pipe]
Share your knowledge! -
 
Yes you can...
How are you building your tree view?. My preferred way to control Images is to add an event handler, and Raise the Event just before the Node is added. This way because the Node is exposed in the Event you can set its Imageindex with n.ImageIndex and n.SelectedImageIndex

Dont forget to tie the ImageList to the Tree control either.

Code:
'Define Event
Public Event AddingNode(ByVal sender As Object, ByVal n As TreeNode, ByVal dr As DataRow, ByVal iLevel As Integer)
Code:
'Raise Event before Node is added
RaiseEvent AddingNode(Me, oParentNode, oParentRow, 0)
Me.Nodes.Add(oParentNode)


Sweep
...if it works dont f*** with it
...if its f****ed blame someone else
...if its your fault that its f***ed, say and admit nothing.
 
So, either way, you still have to have a blank image to mimic having no image.

That was the way I was dealing with it, but I was hoping there was a way around this as adding a blank image leaves a gap between the treeview lines and the text. Not a big deal, but...


Thanx anyway.

Dale
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top