I’m creating a picture in a listbox’s DragRow event. This is then applied as the DragPicture:
p = new Picture (500, 65)
g = p.Graphics
g.Transparency = 0.0
// text & other drawing here
drag.DragPicture = p
The picture thus created has some transparency (i.e., it is translucent) which I’d like to remove (it’s distracting). Further, under WIndows, the drag-picture is so translucent as to be almost invisible - much worse.
So: how can I get rid of it?
10 posts - 5 participants