home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Freeware / Programare / Sharp / SharpDevelop_1.0.3.1761_Setup.exe / ControlLibrary.xpt < prev    next >
Extensible Markup Language  |  2004-11-10  |  3KB  |  101 lines

  1. <?xml version="1.0"?>
  2. <Template originator   = "Markus Palme"
  3.           created      = "24/11/2002"
  4.           lastModified = "02/01/2003">
  5.  
  6.     <!-- Template Header -->
  7.     <TemplateConfiguration>
  8.         <Name>${res:Templates.Project.UserControlLibrary.Name}</Name>
  9.         <Category>VBNET</Category>
  10.         <Icon>VB.Project.ControlLibrary</Icon>
  11.         <LanguageName>VBNET</LanguageName>
  12.         <Description>${res:Templates.Project.UserControlLibrary.Description}</Description>
  13.     </TemplateConfiguration>
  14.     
  15.     <!-- Actions -->
  16.     <Actions>
  17.         <Open filename = "UserControl1.vb"/>
  18.     </Actions>
  19.  
  20.     <Combine name = "${ProjectName}" directory = ".">
  21.         <Options>
  22.             <StartupProject>${ProjectName}</StartupProject>
  23.         </Options>
  24.         
  25.         <Project name = "${ProjectName}" directory = ".">
  26.             <Options Target = "Library" PauseConsoleOutput = "False"/>    
  27.             <Files>
  28.                 <File name="UserControl1.vb"><![CDATA[${StandardHeader.VBNET}
  29. Imports System
  30. Imports System.Drawing
  31. Imports System.Windows.Forms
  32. Imports System.ComponentModel
  33.  
  34. Namespace ${StandardNamespace}
  35.     
  36.     Public Class UserControl1
  37.         Inherits System.Windows.Forms.UserControl
  38.         
  39.         Public Sub New()
  40.             MyBase.New
  41.             ' Must be called for initialization
  42.             Me.InitializeComponent
  43.             '
  44.             ' TODO : Add constructor code after InitializeComponents
  45.             '
  46.         End Sub
  47.         
  48.         #Region " Windows Forms Designer generated code "
  49.         ' This method is required for Windows Forms designer support.
  50.         ' Do not change the method contents inside the source code editor. The Forms designer might
  51.         ' not be able to load this method if it was changed manually.
  52.         Private Sub InitializeComponent()
  53.             '
  54.             'UserControl1
  55.             '
  56.             Me.Name = "UserControl1"
  57.         End Sub
  58.         #End Region
  59.         
  60.     End Class
  61. End Namespace
  62. ]]></File>
  63.         <File name="AssemblyInfo.vb">
  64.             <![CDATA[Imports System.Reflection
  65. Imports System.Runtime.CompilerServices
  66.  
  67. ' Information about this assembly is defined by the following
  68. ' attributes.
  69. '    <ProjectOptions Target = "WinExe" PauseConsoleOutput = "False" />
  70. ' change them to the information which is associated with the assembly
  71. ' you compile.
  72.  
  73. <assembly: AssemblyTitle("")>
  74. <assembly: AssemblyDescription("")>
  75. <assembly: AssemblyConfiguration("")>
  76. <assembly: AssemblyCompany("")>
  77. <assembly: AssemblyProduct("")>
  78. <assembly: AssemblyCopyright("")>
  79. <assembly: AssemblyTrademark("")>
  80. <assembly: AssemblyCulture("")>
  81.  
  82. ' The assembly version has following format :
  83. '
  84. ' Major.Minor.Build.Revision
  85. '
  86. ' You can specify all values by your own or you can build default build and revision
  87. ' numbers with the '*' character (the default):
  88.  
  89. <assembly: AssemblyVersion("1.0.*")>
  90.  
  91. ' The following attributes specify the key for the sign of your assembly. See the
  92. ' .NET Framework documentation for more information about signing.
  93. ' This is not required, if you don't want signing let these attributes like they're.
  94. <assembly: AssemblyDelaySign(false)>
  95. <assembly: AssemblyKeyFile("")>]]></File>
  96.             </Files>
  97.         </Project>
  98.     </Combine>    
  99. </Template>
  100.  
  101.