hch
2025-07-16 7677bf7ab5f15f55b7e1366f1601e541a9a31f4d
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();
        }
    }
}