home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Freeware / Programare / Sharp / SharpDevelop_1.0.3.1761_Setup.exe / FormsProject.xpt < prev    next >
Extensible Markup Language  |  2004-11-10  |  3KB  |  113 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.WindowsApplication.Name}</Name>
  9.         <Category>VBNET</Category>
  10.         <Icon>VB.Project.Form</Icon>
  11.         <LanguageName>VBNET</LanguageName>
  12.         <Description>${res:Templates.Project.WindowsApplication.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[${StandardHeader.VBNET}
  33. Imports System
  34. Imports System.Drawing
  35. Imports System.Windows.Forms
  36.  
  37. Namespace ${StandardNamespace}
  38.     
  39.     Public Class MainForm
  40.         Inherits System.Windows.Forms.Form
  41.         
  42.         Public Shared Sub Main
  43.             Dim fMainForm As New MainForm
  44.             fMainForm.ShowDialog()
  45.         End Sub
  46.         
  47.         Public Sub New()
  48.             MyBase.New
  49.             '
  50.             ' The Me.InitializeComponent call is required for Windows Forms designer support.
  51.             '
  52.             Me.InitializeComponent
  53.             '
  54.             ' TODO : Add constructor code after InitializeComponents
  55.             '
  56.         End Sub
  57.         
  58.         #Region " Windows Forms Designer generated code "
  59.         ' This method is required for Windows Forms designer support.
  60.         ' Do not change the method contents inside the source code editor. The Forms designer might
  61.         ' not be able to load this method if it was changed manually.
  62.         Private Sub InitializeComponent()
  63.             '
  64.             'Form1
  65.             '
  66.             Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
  67.             Me.ClientSize = New System.Drawing.Size(292, 266)
  68.             Me.Name = "MainForm"
  69.             Me.Text = "MainForm"
  70.         End Sub
  71.         #End Region
  72.         
  73.     End Class
  74. End Namespace
  75. ]]></File>
  76.         <File name="AssemblyInfo.vb">
  77.             <![CDATA[Imports System.Reflection
  78. Imports System.Runtime.CompilerServices
  79.  
  80. ' Information about this assembly is defined by the following
  81. ' attributes.
  82. '
  83. ' change them to the information which is associated with the assembly
  84. ' you compile.
  85.  
  86. <assembly: AssemblyTitle("")>
  87. <assembly: AssemblyDescription("")>
  88. <assembly: AssemblyConfiguration("")>
  89. <assembly: AssemblyCompany("")>
  90. <assembly: AssemblyProduct("")>
  91. <assembly: AssemblyCopyright("")>
  92. <assembly: AssemblyTrademark("")>
  93. <assembly: AssemblyCulture("")>
  94.  
  95. ' The assembly version has following format :
  96. '
  97. ' Major.Minor.Build.Revision
  98. '
  99. ' You can specify all values by your own or you can build default build and revision
  100. ' numbers with the '*' character (the default):
  101.  
  102. <assembly: AssemblyVersion("1.0.*")>
  103.  
  104. ' The following attributes specify the key for the sign of your assembly. See the
  105. ' .NET Framework documentation for more information about signing.
  106. ' This is not required, if you don't want signing let these attributes like they're.
  107. <assembly: AssemblyDelaySign(false)>
  108. <assembly: AssemblyKeyFile("")>]]></File>
  109.             </Files>
  110.         </Project>
  111.     </Combine>    
  112. </Template>
  113.