[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

Bind mouse over event for panel (or Static text) wxPython

SMALLp

1/2/2008 12:56:00 PM

How to?

I couldn't find anything except EVT_ENTER_WINDOW that didn't work.
1 Answer

Mike Driscoll

1/2/2008 2:34:00 PM

0

On Jan 2, 6:55 am, SMALLp <po...@mzm.hr> wrote:
> How to?
>
> I couldn't find anything except EVT_ENTER_WINDOW that didn't work.

I use wx.EVT_MOTION, which you would have found had you googled for
"wxpython mouse events". The first result is:

http://www.wxpython.org/docs/api/wx.MouseEvent-...

which details all the mouse events in wxPython.

As I have mentioned to you before, wxPython questions really ought to
be addressed to the wxPython users group, which you can join here:

http://wxpython.org/ma...

Mike