Files
Umbraco-CMS/components/umbraco.controls/Splitter.cs
Shandem f815b259db DO NOT D,OWNLOAD. DOWNLOAD LATEST STABLE FROM RELEASE TAB
Fixes 22527,24171. umbraco_client path no longer hard coded throughout code. More client dependency work.

[TFS Changeset #57369]
2009-07-30 16:35:06 +00:00

14 lines
511 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 = GlobalSettings.ClientPath + "/menuicon/images/split.gif";
}
}
}