📄 tinymceoption.cs
字号:
using System;
using System.Web.UI;
using System.Web.UI.WebControls;
using NetFocus.Web.Core;
namespace NetFocus.Web.Applications.Forum
{
public class TinyMCEOption : Control
{
private string name;
private string value;
public TinyMCEOption()
{
this.name = string.Empty;
this.value = string.Empty;
}
public string Name
{
get
{
return this.name;
}
set
{
this.name = value;
}
}
public string Value
{
get
{
return this.value;
}
set
{
this.value = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -