home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / Sharpdev / 099bsetup.exe / ExampleMenuCommand.xft < prev    next >
Extensible Markup Language  |  2003-09-21  |  1KB  |  51 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 menu command</Name>
  6.         <Icon>C#.File.FullFile</Icon>
  7.         <Category>SharpDevelop</Category>
  8.         <LanguageName>C#</LanguageName>
  9.         <Description>Creates a menu command which is usable for main and context menus</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 MyMenuCommand
  20. {
  21.     /// <summary>
  22.     /// Description of SimpleMenuCommand
  23.     /// </summary>
  24.     public class SimpleMenuCommand : AbstractMenuCommand
  25.     {
  26.         /// <summary>
  27.         /// Creates a new SimpleMenuCommand
  28.         /// </summary>
  29.         public SimpleMenuCommand()
  30.         {
  31.             // You can enable/disable the menu command using the
  32.             // IsEnabled property of the AbstractMenuCommand class
  33.         }
  34.     
  35.         /// <summary>
  36.         /// Starts the command
  37.         /// </summary>
  38.         public override void Run()
  39.         {
  40.             // TODO: Add your code here !!!
  41.         }
  42.     }
  43. }
  44. ]]>
  45.         </File>
  46.     </TemplateFiles>
  47.     
  48.     <FileOptions/>
  49.     
  50. </Template>
  51.