Mouse over

  • Thread starter Thread starter Rudiga
  • Start date Start date
R

Rudiga

Hi,

Is there any kind of mouse over type method in C#, that will change the
mouse to a different pointer when the mouse is over a picture box. The
reason i as is that i am intending to use a picture instead of a button to
move to another form and its not obvious, without writing on the user
interface, what to do. I thought a change in mouse pointer might help.

Thanks
Rudiga
 
Rudiga said:
Hi,

Is there any kind of mouse over type method in C#, that will change the
mouse to a different pointer when the mouse is over a picture box. The
reason i as is that i am intending to use a picture instead of a button to
move to another form and its not obvious, without writing on the user
interface, what to do. I thought a change in mouse pointer might help.

Thanks
Rudiga

is there also a similar thing for buttons too, i.e. if someone put the mouse
over a button i could trigger an event, ie another picture.
 
Hi,

Is this a web or win app?

In a web app you can use either an IMG inside a <A> or an ImageButton
control

In a win environment you can detect when the mouse enter your control (or
leave it) and change the mouse at your will (take a look at the Cursor
class)
 
Back
Top