I have been developing some custom smart tags. I am using a DesignerActionMethodItem which gets me to a fired method in code. When I try to hit the controls.Add the control is added but it seems the designer is unaware of it. It is never serialized and it goes away when the form is refreshed in the designer. Any help would be greatly appreciated. I am sort of stuck and google hasn't helped me. Please don't send me anything about smart tags that has nothing to do with adding controls dynamically at design time, I have already read so many looking for this.
|
|
|||||
|
|
|
here is slimmed down version of my code: Imports System.ComponentModel Imports System.Windows.Forms _ Public Class Example End Class Public Class ExampleControlDesigner Inherits System.Windows.Forms.Design.ControlDesigner
End Class Public Class ExampleControlDesignerActionList Inherits System.ComponentModel.Design.DesignerActionList
End Class The problem occurs inside the AddControl method. Because this code is being executed at design time it does not behave as intended. A control is added to the form, but it is never seriallized and therefore can not be interacted with. Any help would be greatly appreciated. |
||
|
|
