2009-06-19 07:39:16 +00:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Web.UI;
|
2010-01-28 12:51:46 +00:00
|
|
|
using umbraco.IO;
|
2009-06-19 07:39:16 +00:00
|
|
|
|
|
|
|
|
namespace umbraco.uicontrols {
|
|
|
|
|
internal class Splitter : System.Web.UI.WebControls.Image {
|
|
|
|
|
|
|
|
|
|
protected override void OnLoad(System.EventArgs EventArguments) {
|
|
|
|
|
this.Height = System.Web.UI.WebControls.Unit.Pixel(21);
|
|
|
|
|
this.Style.Add("border", "0px");
|
|
|
|
|
this.Attributes.Add("class", "editorIconSplit");
|
2010-01-28 12:51:46 +00:00
|
|
|
this.ImageUrl = SystemDirectories.Umbraco_client + "/menuicon/images/split.gif";
|
2009-06-19 07:39:16 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|