[Ironpython-users] IronPython, Daily Digest 4/26/2012

2012-04-27 Thread no_reply
Hi ironpython, Here's your Daily Digest of new issues for project "IronPython". In today's digest:ISSUES 1. [New issue] signal module does not work on non-Windows machines -- ISSUES 1. [New issue] signal module does not work on non-Windows machines

[Ironpython-users] How to ref XAML object from IPY for WPF app?

2012-04-27 Thread David Bagby
Hi, I'm a bit new to both IronPython and WPF - so of course I find myself trying to figure out how to make them work together... (I don't know where best to ask this question as I don't know if this is really a IPY or a WPF or combination question - so if there is a better group to consult, ple

Re: [Ironpython-users] How to ref XAML object from IPY for WPF app?

2012-04-27 Thread Jeff Hardy
Hi David, There's a working smaple at https://github.com/jdhardy/IronPythonSamples/blob/master/PyWpfSample/PyWpfSample.py that you can check out. >From looking at your code, I think the issue is that you need to use 'self.label1.Content = ...' to reference the controls on the form. - Jeff On Fri

Re: [Ironpython-users] How to ref XAML object from IPY for WPF app?

2012-04-27 Thread David Bagby
Jeff, Thank you! Now that you pointed that out, it's easy and works fine. I guess i was thinking that the code scope would have an implied reference to things in self... I see I'll just have to be more explicit Thanks again, back to learning now... Dave On 4/27/2012 10:36 AM, Jeff Hardy wro

Re: [Ironpython-users] How to ref XAML object from IPY for WPF app?

2012-04-27 Thread Jeff Hardy
On Fri, Apr 27, 2012 at 10:49 AM, David Bagby wrote: > Jeff, > Thank you! > Now that you pointed that out, it's easy and works fine. > I guess i was thinking that the code scope would have an implied reference > to things in self...  I see I'll just have to be more explicit :) % python -m this T