温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:MyWebPages51aspx汉化最终版
当前文件:
MyWebPagesStarterKit/App_Code/FCKEditor/FCKeditor.cs,打开代码结构图
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
20
using System ; 21
using System.Web.UI ; 22
using System.Web.UI.WebControls ; 23
using System.ComponentModel ; 24
using System.Text.RegularExpressions ; 25
using System.Globalization ; 26
using System.Security.Permissions ; 27
28
namespace 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



* FCKeditor - The text editor for internet

}