Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

display image on mouseover in windows form?

Tags:

c#

winforms

I am working on a project in c# using windows forms. me and the group I am in want to make it so that when the user hovers their mouse over an image, in our case a card, that a larger image of that card appears next to the mouse arrow, much in the same way a tool tip would work. I don't think you can use a tool tip to do this i have tried looking everywhere, any advice or examples would be great thank you very much

like image 913
Zyzzyx Avatar asked Nov 25 '11 02:11

Zyzzyx


1 Answers

You may want to look at this Code Project Article

It shows you how to create an OwnerDrawn ToolTip with an Image.

like image 81
Mark Hall Avatar answered Sep 19 '22 09:09

Mark Hall