[IronPython] MouseButtonDownEvent doesn't fire + which tool to work in?

Curt Hagenlocher curt at hagenlocher.org
Sun Dec 21 16:35:05 CET 2008


How are you confirming that this doesn't fire?  If this is your exact code,
then it seems likely that it's actually throwing an exception -- isFirst
will not be defined when the first line executes.

On Sun, Dec 21, 2008 at 7:31 AM, xkrja <kristian.jaksch at gmail.com> wrote:

>
> I've the following code:
>
> def inputBox_MouseLeftButtonDown(s, e):
>    if isFirst == True:
>            root.inputBox.Text = ""
>            isFirst = False
>
> root.inputBox.MouseLeftButtonDown += inputBox_MouseLeftButtonDown
>
> Problem is the event doesn't fire when I click the inputBox (which is a
> textbox). The debugger doesn't say anything. I have another event handler
> and that one works fine:
>
> root.inputBox.KeyDown += inputBox_KeyDown
>
> Anyone has any idea what's wrong with the MouseLeftButtonDown event?
>
>
> Another question: Which tool do you guys say is the best for developing
> IronPython + Silverlight apps? I find it hard in Visual Studio since the
> debugger only lets you step through the code but you can't see any variable
> values.
> --
> View this message in context:
> http://www.nabble.com/MouseButtonDownEvent-doesn%27t-fire-%2B-which-tool-to-work-in--tp21115998p21115998.html
> Sent from the IronPython mailing list archive at Nabble.com.
>
> _______________________________________________
> Users mailing list
> Users at lists.ironpython.com
> http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/ironpython-users/attachments/20081221/d4868f1f/attachment.html>


More information about the Ironpython-users mailing list