mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-20 21:33:10 -07:00
fixes up the name of dps (#1638)
This commit is contained in:
parent
61985c1b8c
commit
850c5794bd
1 changed files with 4 additions and 4 deletions
|
@ -166,7 +166,7 @@ namespace CalculatorApp
|
||||||
|
|
||||||
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 @@ namespace CalculatorApp
|
||||||
|
|
||||||
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 @@ namespace CalculatorApp
|
||||||
|
|
||||||
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 @@ namespace CalculatorApp
|
||||||
|
|
||||||
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) =>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue