Collection / Property Grid
-
Hello coders, I have been designing an application which contains a class called table. There is a property called RelatedTables whose type is also a collection of tables ( I have created an extra class called TableList which extended from the ArrayList class ) In runtime, I do assign the selectedobject property of a propertygrid to a new instance of the table class, like below dim p as new Table PropertyGrid1.SelectedObject = p As we all guess, the property grid will be filled with the properties of the class. As I mentioned there is a property called RelatedTables which is a collection of the Tables. I would like to add items(tables) which have been created before (in run time), to collection (RelatedTables) How can I do that? Thank you. Best Regards Emre YAZICI