Esempio n. 1
0
        private static void OnDecreaseCommand(object sender, ExecutedRoutedEventArgs e)
        {
            NumericUpDown control = sender as NumericUpDown;

            if (control != null)
            {
                control.OnDecrease();
            }
        }