// 单行文本
UICtrlSText = function(Ctrl,UIName)
{
	// 被继承 而非实例化
	if(!arguments.length)
		return ;

	this.UICtrlSTextConstruct(Ctrl,UIName) ;
}
UICtrlSText.prototype = new UICtrlText() ;

UICtrlSText.prototype.UICtrlSTextConstruct = function(Ctrl,UIName)
{
	this.UICtrlTextConstruct(Ctrl,UIName) ;
	
}
