home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / Sharpdev / 099bsetup.exe / SimpleCommand.xft < prev    next >
Extensible Markup Language  |  2003-09-21  |  945b  |  41 lines

  1. <?xml version="1.0"?>
  2. <Template Originator="Mike Krueger" Language="C#" Created="09/04/2003" LastModified="09/04/2003">
  3.     
  4.     <TemplateConfiguration>
  5.         <Name>Simple #Develop command</Name>
  6.         <Icon>C#.File.FullFile</Icon>
  7.         <Category>SharpDevelop</Category>
  8.         <LanguageName>C#</LanguageName>
  9.         <Description>Creates a command which is usable for many circumstances</Description>
  10.     </TemplateConfiguration>
  11.     
  12.     <TemplateFiles>
  13.         <File DefaultExtension=".cs" DefaultName="EmptyC#file">
  14.             <![CDATA[using System;
  15. using System.Windows.Forms;
  16.  
  17. using ICSharpCode.Core.AddIns.Codons;
  18.  
  19. namespace MyCommand
  20. {
  21.     /// <summary>
  22.     /// Description of SimpleCommand
  23.     /// </summary>
  24.     public class SimpleCommand : AbstractCommand
  25.     {
  26.         /// <summary>
  27.         /// Starts the command
  28.         /// </summary>
  29.         public override void Run()
  30.         {
  31.             // TODO: Add your code here !!!
  32.         }
  33.     }
  34. }]]>
  35.         </File>
  36.     </TemplateFiles>
  37.     
  38.     <FileOptions/>
  39.     
  40. </Template>
  41.