tinymceoption.cs
来自「ASP.NET简洁论坛源代码 这是一个简单的论坛」· CS 代码 · 共 45 行
CS
45 行
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 + =
减小字号Ctrl + -
显示快捷键?