Re: [IronPython] IronPython & WIndows Forms, Part III

2006-05-27 Thread Michael Foord
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

Re: [IronPython] IronPython & WIndows Forms, Part III

2006-05-27 Thread Sanghyeon Seo
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 _

Re: [IronPython] IronPython & WIndows Forms, Part III

2006-05-27 Thread Michael Foord
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

Re: [IronPython] IronPython & WIndows Forms, Part III

2006-05-27 Thread Michael Foord
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

Re: [IronPython] IronPython & WIndows Forms, Part III

2006-05-27 Thread Sanghyeon Seo
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

Re: [IronPython] IronPython & WIndows Forms, Part III

2006-05-27 Thread Sanghyeon Seo
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

[IronPython] Creating/using delegate types in IronPython

2006-05-27 Thread Brian Quinlan
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