📄 powereasydesigner.cs
字号:
namespace PowerEasy.Controls.Editor
{
using System;
using System.Globalization;
using System.Web.UI.Design;
public class PowerEasyDesigner : ControlDesigner
{
public override string GetDesignTimeHtml()
{
PEeditor component = (PEeditor) base.Component;
return string.Format(CultureInfo.InvariantCulture, "<div><table width=\"{0}\" height=\"{1}\" bgcolor=\"#f5f5f5\" bordercolor=\"#c7c7c7\" cellpadding=\"0\" cellspacing=\"0\" border=\"1\"><tr><td valign=\"middle\" align=\"center\">PowerEasy - <b>{2}</b></td></tr></table></div>", new object[] { component.Width, component.Height, component.ID });
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -