using System;
using System.Collections.Generic;
using System.Web.UI.Design;
using System.Text;
namespace Heckel.EasyTools.Diagramming{
public class DiagramDesigner : ControlDesigner
{
public override string GetDesignTimeHtml()
{
return "<div width=\"300px\" height=\"300px\" style=\"background-color:#F8F8F8;text-align:center;padding:10px 10px 10px 10px;\">http://www.EasyDiagram.NET</div>";
}
}
}
|