Re: [Python.NET] I need to use C# list as an object for one of my controls

2013-05-24 Thread Jojo Maquiling
art of the ObjectListView library. Python dot net is really a great software. On Fri, May 24, 2013 at 12:07 PM, Jojo Maquiling wrote: > Actually i'm just trying to use a .net System.Object List with this one - > http://objectlistview.sourceforge.net/cs/index.html. I like the way the > g

Re: [Python.NET] I need to use C# list as an object for one of my controls

2013-05-23 Thread Jojo Maquiling
of my code. def LoadRecord(self,sender,e): listing = List[person]() listing.Add(person('jojo','maquiling')) listing.Add(person('gary','granada')) self._objectListView1.SetObjects(listing) A datagrid is good,I have used it, but then i just want to

[Python.NET] I need to use C# list as an object for one of my controls

2013-05-23 Thread Jojo Maquiling
Here is the issue that i need to address: * * *# My declaration is just fine here * >>> class person(System.Object): def __init__(self,fname,lname): self.Firstname = fname self.Lastname = lname *# adding a value also goes fine. * >>> j = person('jojo','maquilin