Files
Umbraco-CMS/components/umbraco.controls/Splitter.cs
Shandem f6d0d043b5 DO NOT DOWNLOAD. DOWNLOAT LATEST STABLE FROM RELEASE TAB
Created 4.1.0 branch

[TFS Changeset #55082]
2009-06-19 07:39:16 +00:00

14 lines
498 B
C#

using System.ComponentModel;
using System.Web.UI;
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");
this.ImageUrl = "/umbraco_client/menuicon/images/split.gif";
}
}
}