i see this post but i can't figure out any way to have a node represented as an image and have the text be a label below the node. Does anyone know if this is possible using Microsoft GLEE?
-
Where can the old Microsoft Glee be downloaded (not MSAGL)? – Jordão Jan 27 '10 at 17:56
-
Deosn't the sample NodesWithImages do this? – Gabriel McAdams Jan 27 '10 at 23:41
-
it looks like nodes with image is a MSAGL sample, not a glee sample – leora Jan 28 '10 at 03:00
-
Where do we get Glee? I just found MSAGL for download. – Rubens Farias Jan 28 '10 at 21:21
-
You can download GLEE @ http://research.microsoft.com/en-us/downloads/f1303e46-965f-401a-87c3-34e1331d32c5/default.aspx - it says "Automatic Graph Layout" in the heading, but the file's name is GLEE.msi and it does in fact contain GLEE :) – Igor Klimer Jan 29 '10 at 00:38
1 Answers
After playing around with Reflector a bit I came to the conclusion that the author of that blog post (and the author of GLEE/MSAGL itself) used a beta/alpha/development version of the software, which had support for images as nodes.
MSAGL uses Bitmap
s for loading images and a quick analysis of the GLEE dll's shows that only the Microsoft.Glee.GraphViewerGdi
assembly depends on System.Drawing.Bitmap
. Besides that, the GraphAttr
class would be the most likely place for such a feature and I don't see anything there that could be even remotely (ie. using some weird hack ;)) used for image handling.
Also, notice that the source snippet that the author provided doesn't quite follow the API seen in the version downloadable from MS's site (1.2.0.0).

- 15,321
- 3
- 47
- 57