AjaxControlToolkit.Rating.CreateChildControls C# (CSharp) 메소드

CreateChildControls() 보호된 메소드

protected CreateChildControls ( ) : void
리턴 void
        protected override void CreateChildControls()
        {
            base.CreateChildControls();

            _extender = new RatingExtender();

            //No add Extender in design mode if not add tag Extender and Properties in control
            if(!DesignMode) {
                Controls.Add(_extender);
            }
        }