<.NET Framework 1.1>
I am trying to develop a table control for Windows these days. It should look like an HTML Table control with rows and cells. For this purpose, I inherited from ContainerControl and added a ParentControlDesigner to it.
I overrided the OnPaint method to draw the table border and all the rows and cells in the table. Now I want that if the user drag and drops any other control on to it. I should be notified that a control has recently been added; so that I can alter its location within one of the cells in my table.
I tried to override the OnDragDrop of ParentControlDesigner, and changed the (x,y) tomy desired location. But it didn't work. Plz help....
Waiting for an early response