Hi List

----------------------------
>>> import clr
>>> clr.AddReference('System.Windows.Forms')
>>> from System.Windows.Forms import TabControl
>>> t = TabControl()
>>> t.MouseDown == t.MouseDown
False
>>> t.MouseDown is t.MouseDown
False
>>>
----------------------------

This behaviour makes it extremely cumbersome to detach from events (some events, anyway; I'm pretty certain that I've seen events which don't exhibit this behaviour, but I can't remember what they are).

Is this an IronPython bug, or have I got a broken mental model of what should be happening?


Cheers
William
_______________________________________________
Users mailing list
Users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to