示例#1
0
        public TsTickCross(TsColumn Parent, IDirector MainController) : base(Parent)
        {
            this._contentchanger = new ContentChanger();
            this._crossui        = new TsCrossUI();
            this._tickui         = new TsTickUI();
            this._warnui         = new TsWarnUI();

            this.Control = this._contentchanger;
            this._validationtooltiphandler.SetTarget(this.UserControl);
            this.SetDefaults();
        }
示例#2
0
        //constructor
        public TsTickCross(XElement InputXml, TsColumn Parent) : base(Parent)
        {
            this._contentchanger = new ContentChanger();
            this._crossui        = new TsCrossUI();
            this._tickui         = new TsTickUI();
            this._warnui         = new TsWarnUI();

            this.Control = this._contentchanger;
            this._validationtooltiphandler.SetTarget(this.UserControl);
            this.SetDefaults();
            this.LoadXml(InputXml);
            this.RefreshValue();
        }