${res:Templates.Project.SharpDevelopAddin.Name}
VBNet
SharpDevelop
VBNet.Project.ControlLibrary
${res:Templates.Project.SharpDevelopAddin.Description}
v4.0
Library
On
]]>
]]>
''' Description of the pad content
'''
Public Class TestPad
Inherits AbstractPadContent
Private ctl As MyUserControl
'''
''' Creates a new TestPad object
'''
Public Sub New
ctl = new MyUserControl()
End Sub
'''
''' The representing the pad
'''
Public Overrides ReadOnly Property Control As Control
Get
return ctl
End Get
End Property
'''
''' Refreshes the pad
'''
Public Overrides Sub RedrawContent()
' TODO: Refresh the whole pad control here, renew all resource strings whatever
' Note that you do not need to recreate the control.
End Sub
'''
''' Cleans up all used resources
'''
Public Overrides Sub Dispose()
ctl.Dispose()
End Sub
End Class
]]>