You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
448 B
24 lines
448 B
/* |
|
* Created by SharpDevelop. |
|
* User: Daniel Grunwald |
|
* Date: 09.05.2006 |
|
* Time: 17:22 |
|
*/ |
|
|
|
using System; |
|
using System.Text; |
|
using System.Windows.Forms; |
|
using ICSharpCode.Core; |
|
using ICSharpCode.SharpDevelop; |
|
using ICSharpCode.SharpDevelop.Gui; |
|
|
|
namespace LineCounterAddin |
|
{ |
|
public class ToolCommand1 : AbstractMenuCommand |
|
{ |
|
public override void Run() |
|
{ |
|
WorkbenchSingleton.Workbench.ShowView(new LineCounterViewContent()); |
|
} |
|
} |
|
}
|
|
|