Inheritance: System.Windows.RoutedEventArgs
コード例 #1
0
ファイル: UpDownBase.cs プロジェクト: Master-MiShutka/TMPApps
        protected void OnSpin(SpinEventArgs e)
        {
            if (e == null)
            {
                throw new ArgumentNullException("e");
            }

            if (e.Direction == SpinDirection.Increase)
            {
                DoIncrement();
            }
            else
            {
                DoDecrement();
            }
        }