Re: [IronPython] WPF Question

2008-05-03 Thread Davy Mitchell
Thanks Curt - turns out the selected listbox entry in the VB app was a ListBoxItem (added in the designer),so of course they would be different. I forgot to check the XAML file... Doh! :-) Davy On Sat, May 3, 2008 at 3:46 AM, Curt Hagenlocher <[EMAIL PROTECTED]> wrote: > If you add strings to th

Re: [IronPython] WPF Question

2008-05-02 Thread Curt Hagenlocher
If you add strings to the Items collection, then SelectedItem will contain strings. If you want the ListBoxItem, you have to do something like this: listbox.ItemContainerGenerator.ContainerFromIndex(listbox.SelectedIndex) This is true for both VB and IronPython because it's a function of the WPF

[IronPython] WPF Question

2008-05-02 Thread Davy Mitchell
First - yay a new release well done ;-) Now a WPF Question... I am using a listbox and in VB.net used TheLisbox.SelectedItem.Content to get the string selected. Try this with IronPython (and after an impressively long traceback) the error is 'AttributeError: 'str' object has no attribute 'Conten