home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / Sharpdev / 099bsetup.exe / FormsVBNetProject.xpt < prev    next >
Extensible Markup Language  |  2004-02-04  |  3KB  |  101 lines

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