FSpot.MainWindow.CreateTag C# (CSharp) Method

CreateTag() public method

public CreateTag ( object sender, EventArgs args ) : FSpot.Tag
sender object
args System.EventArgs
return FSpot.Tag
		public Tag CreateTag (object sender, EventArgs args)
		{
			TagCommands.Create command = new TagCommands.Create (Database.Tags);
			return command.Execute (TagCommands.TagType.Category, tag_selection_widget.TagHighlight);
		}
MainWindow