public Tag CreateTag (object sender, EventArgs args)
	{
		TagCommands.Create command = new TagCommands.Create (db.Tags, GetToplevel (sender));
		return command.Execute (TagCommands.TagType.Category, tag_selection_widget.TagHighlight);
	}
예제 #2
0
파일: MainWindow.cs 프로젝트: mono/f-spot
		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);
		}