コード例 #1
0
ファイル: GridView.cs プロジェクト: MIliev11/Samples
        public void RaiseOnScroll(float delta, float currentY)
        {
            var args = new ControlScrollEventArgs(delta, currentY);

            if (OnScroll != null)
            {
                OnScroll(this, args);
            }
        }
コード例 #2
0
        public void RaiseOnScroll(float delta, float currentY)
        {
            var args = new ControlScrollEventArgs(delta, currentY);

            OnScroll?.Invoke(this, args);
        }