fixes up the name of dps (#1638)

This commit is contained in:
Tian L 2021-08-10 10:13:26 +08:00 committed by GitHub
parent 61985c1b8c
commit 850c5794bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -166,7 +166,7 @@ public static void SetVirtualKey(DependencyObject target, MyVirtualKey value)
public static readonly DependencyProperty VirtualKeyControlChordProperty = public static readonly DependencyProperty VirtualKeyControlChordProperty =
DependencyProperty.RegisterAttached( DependencyProperty.RegisterAttached(
"VirtualKey", "VirtualKeyControlChord",
typeof(MyVirtualKey), typeof(MyVirtualKey),
typeof(KeyboardShortcutManager), typeof(KeyboardShortcutManager),
new PropertyMetadata(default(MyVirtualKey), (sender, args) => new PropertyMetadata(default(MyVirtualKey), (sender, args) =>
@ -186,7 +186,7 @@ public static void SetVirtualKeyControlChord(DependencyObject target, MyVirtualK
public static readonly DependencyProperty VirtualKeyShiftChordProperty = public static readonly DependencyProperty VirtualKeyShiftChordProperty =
DependencyProperty.RegisterAttached( DependencyProperty.RegisterAttached(
"VirtualKey", "VirtualKeyShiftChord",
typeof(MyVirtualKey), typeof(MyVirtualKey),
typeof(KeyboardShortcutManager), typeof(KeyboardShortcutManager),
new PropertyMetadata(default(MyVirtualKey), (sender, args) => new PropertyMetadata(default(MyVirtualKey), (sender, args) =>
@ -206,7 +206,7 @@ public static void SetVirtualKeyShiftChord(DependencyObject target, MyVirtualKey
public static readonly DependencyProperty VirtualKeyAltChordProperty = public static readonly DependencyProperty VirtualKeyAltChordProperty =
DependencyProperty.RegisterAttached( DependencyProperty.RegisterAttached(
"VirtualKey", "VirtualKeyAltChord",
typeof(MyVirtualKey), typeof(MyVirtualKey),
typeof(KeyboardShortcutManager), typeof(KeyboardShortcutManager),
new PropertyMetadata(default(MyVirtualKey), (sender, args) => new PropertyMetadata(default(MyVirtualKey), (sender, args) =>
@ -226,7 +226,7 @@ public static void SetVirtualKeyAltChord(DependencyObject target, MyVirtualKey v
public static readonly DependencyProperty VirtualKeyControlShiftChordProperty = public static readonly DependencyProperty VirtualKeyControlShiftChordProperty =
DependencyProperty.RegisterAttached( DependencyProperty.RegisterAttached(
"VirtualKey", "VirtualKeyControlShiftChord",
typeof(MyVirtualKey), typeof(MyVirtualKey),
typeof(KeyboardShortcutManager), typeof(KeyboardShortcutManager),
new PropertyMetadata(default(MyVirtualKey), (sender, args) => new PropertyMetadata(default(MyVirtualKey), (sender, args) =>