您目前尚未登陆,请选择【登陆】或【注册
首页->全站代码->MyWebPages51aspx汉化最终版>>App-Code/FCKEditor/FCKeditor.cs>>源码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:MyWebPages51aspx汉化最终版
当前文件:文件类型 MyWebPagesStarterKit/App_Code/FCKEditor/FCKeditor.cs打开代码结构图
普通视图
		            
1/* 2 * FCKeditor - The text editor for internet 3 * Copyright (C) 2003-2005 Frederico Caldeira Knabben 4 * 5 * Licensed under the terms of the GNU Lesser General Public License: 6 * http://www.opensource.org/licenses/lgpl-license.php 7 * 8 * For further information visit: 9 * http://www.fckeditor.net/ 10 * 11 * "Support Open Source software. What about a donation today?" 12 * 13 * File Name: FCKeditor.cs 14 * This is the FCKeditor Asp.Net control. 15 * 16 * File Authors: 17 * Frederico Caldeira Knabben (fredck@fckeditor.net) 18 */ 19 20using System ; 21using System.Web.UI ; 22using System.Web.UI.WebControls ; 23using System.ComponentModel ; 24using System.Text.RegularExpressions ; 25using System.Globalization ; 26using System.Security.Permissions ; 27 28namespace FredCK.FCKeditorV2 29{ 30 public enum LanguageDirection 31 { 32 LeftToRight, 33 RightToLeft 34 } 35 36 [ DefaultProperty("Value") ] 37 [ ValidationProperty("Value") ] 38 [ ToolboxData("<{0}:FCKeditor runat=server></{0}:FCKeditor>") ] 39 [ Designer("FredCK.FCKeditorV2.FCKeditorDesigner") ] 40 [ ParseChildren(false) ] 41 public class FCKeditor : System.Web.UI.Control, IPostBackDataHandler 42 { 43 public FCKeditor() 44 {} 45 46 Base Configurations Properties 110 111 Appearence Properties 130 131 Configurations Properties