${res:Templates.Project.SharpDevelopAddin.Name}
SharpDevelop
VBNet.Project.ControlLibrary
VBNet
${res:Templates.Project.SharpDevelopAddin.Description}
${ProjectName}
]]>
]]>
''' 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
]]>
'The assembly version has following format :
'Major.Minor.Build.Revision
'You can specify all values by your own or you can build default build and revision
'numbers with the '*' character (the default):
]]>