hch
2026-03-20 c8aea6cbef51b3dd41b4d911bc7e6bf89a6e2e2d
Main/Component/UI/EnhancedScroller/EnhancedScrollerCellView.cs
@@ -7,7 +7,7 @@
    /// <summary>
    /// This is the base class that all cell views should derive from
    /// </summary>
    public class EnhancedScrollerCellView : WidgetBehavior
    public class EnhancedScrollerCellView : MonoBehaviour
    {
        /// <summary>
        /// The cellIdentifier is a unique string that allows the scroller
@@ -45,9 +45,5 @@
        public virtual void RefreshCellView() { }//当主动调用EnhancedScrller类中RefreshActiveCellViews()方法时,会遍历当前处于Active状态的CellVeiw,并调用它们重写的这个方法
                                                 //这个方法可以用于主动刷新当前处于Active状态的CellVeiw
        protected virtual void Awake()
        {
            InitWidgts();
        }
    }
}