Example #1
0
        private static void OnIsUndoEnabledChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
        {
            InputBase inputBase = o as InputBase;

            if (inputBase != null)
            {
                inputBase.OnIsUndoEnabledChanged(( bool )e.OldValue, ( bool )e.NewValue);
            }
        }