Sanghyeon Seo wrote:
> 2006/5/27, Michael Foord <[EMAIL PROTECTED]>:
>
>> I've just posted part 3 of "IronPython & Windows Forms" to my blog. This
>> entry is on widgets and event handlers. It starts to illustrate reading
>> the MSDN docs from an IronPython point of view.
>>
>> I'm sure I will s
2006/5/28, Michael Foord <[EMAIL PROTECTED]>:
> I will add these. What OS do you have Mono running on for these
> screenshots ?
Debian GNU/Linux, unstable branch. Mono SVN trunk. I use GNOME, the
window manager is Metacity, and GNOME theme I am using is Glider.
Seo Sanghyeon
_
Sanghyeon Seo wrote:
> 2006/5/27, Michael Foord <[EMAIL PROTECTED]>:
>
>> I've just posted part 3 of "IronPython & Windows Forms" to my blog. This
>> entry is on widgets and event handlers. It starts to illustrate reading
>> the MSDN docs from an IronPython point of view.
>>
>> I'm sure I will s
Sanghyeon Seo wrote:
> Part II has a typo in the code listing. s/Main/HelloWorldForm/ in the full
> code.
>
>
Thanks. Corrected.
Michael Foord
http://www.voidspace.org.uk/python/shareware.shtml
> Seo Sanghyeon
> ___
> users mailing list
> users@list
Part II has a typo in the code listing. s/Main/HelloWorldForm/ in the full code.
Seo Sanghyeon
___
users mailing list
users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
2006/5/27, Michael Foord <[EMAIL PROTECTED]>:
> I've just posted part 3 of "IronPython & Windows Forms" to my blog. This
> entry is on widgets and event handlers. It starts to illustrate reading
> the MSDN docs from an IronPython point of view.
>
> I'm sure I will smooth it out later, but suggestio
1. Is it possible to use existing delegates (as the caller) in
IronPython e.g. is there some way to make this work:
>>> from System import EventHandler, EventArgs
>>> my_event = EventHandler()
Traceback (most recent call last):
File , line 0, in input##5
>>> # my_event += lambda x,y : No