home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 April
/
CMCD0404.ISO
/
Software
/
Freeware
/
Programare
/
Sharpdev
/
099bsetup.exe
/
SimpleCommand.xft
< prev
next >
Wrap
Extensible Markup Language
|
2003-09-21
|
945b
|
41 lines
<?xml version="1.0"?>
<Template Originator="Mike Krueger" Language="C#" Created="09/04/2003" LastModified="09/04/2003">
<TemplateConfiguration>
<Name>Simple #Develop command</Name>
<Icon>C#.File.FullFile</Icon>
<Category>SharpDevelop</Category>
<LanguageName>C#</LanguageName>
<Description>Creates a command which is usable for many circumstances</Description>
</TemplateConfiguration>
<TemplateFiles>
<File DefaultExtension=".cs" DefaultName="EmptyC#file">
<![CDATA[using System;
using System.Windows.Forms;
using ICSharpCode.Core.AddIns.Codons;
namespace MyCommand
{
/// <summary>
/// Description of SimpleCommand
/// </summary>
public class SimpleCommand : AbstractCommand
{
/// <summary>
/// Starts the command
/// </summary>
public override void Run()
{
// TODO: Add your code here !!!
}
}
}]]>
</File>
</TemplateFiles>
<FileOptions/>
</Template>