Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SaveCommand.cs « Commands « TextEditorLib « Samples - github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ab9987c71ec5934af235d580572e3d956979cb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

using System;

namespace TextEditor
{
	public class SaveCommand: ICommand
	{
		public void Run ()
		{
			TextEditorApp.SaveFile ();
		}
	}
}