From a8b3555c09d510b4cfa2908052e4bf2b43b50da7 Mon Sep 17 00:00:00 2001 From: tian-lt Date: Mon, 9 Aug 2021 14:05:05 +0800 Subject: [PATCH] fixes up the name of dps --- src/Calculator/Common/KeyboardShortcuManager.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Calculator/Common/KeyboardShortcuManager.cs b/src/Calculator/Common/KeyboardShortcuManager.cs index c21ac7fa..e8cb3fc3 100644 --- a/src/Calculator/Common/KeyboardShortcuManager.cs +++ b/src/Calculator/Common/KeyboardShortcuManager.cs @@ -166,7 +166,7 @@ namespace CalculatorApp public static readonly DependencyProperty VirtualKeyControlChordProperty = DependencyProperty.RegisterAttached( - "VirtualKey", + "VirtualKeyControlChord", typeof(MyVirtualKey), typeof(KeyboardShortcutManager), new PropertyMetadata(default(MyVirtualKey), (sender, args) => @@ -186,7 +186,7 @@ namespace CalculatorApp public static readonly DependencyProperty VirtualKeyShiftChordProperty = DependencyProperty.RegisterAttached( - "VirtualKey", + "VirtualKeyShiftChord", typeof(MyVirtualKey), typeof(KeyboardShortcutManager), new PropertyMetadata(default(MyVirtualKey), (sender, args) => @@ -206,7 +206,7 @@ namespace CalculatorApp public static readonly DependencyProperty VirtualKeyAltChordProperty = DependencyProperty.RegisterAttached( - "VirtualKey", + "VirtualKeyAltChord", typeof(MyVirtualKey), typeof(KeyboardShortcutManager), new PropertyMetadata(default(MyVirtualKey), (sender, args) => @@ -226,7 +226,7 @@ namespace CalculatorApp public static readonly DependencyProperty VirtualKeyControlShiftChordProperty = DependencyProperty.RegisterAttached( - "VirtualKey", + "VirtualKeyControlShiftChord", typeof(MyVirtualKey), typeof(KeyboardShortcutManager), new PropertyMetadata(default(MyVirtualKey), (sender, args) =>