Based on codePlex discussion https://wpftoolkit.codeplex.com/discussions/569496.
NumericUpDowns have a "Value" and a "Text" properties.
When a digit is typed in the NumericUpDown, the "Value" is automatically synchronized with "Text".
User wants to wait for a "Enter" key press to synchronize the "Value" with "Text". Pressing "Up" or "Down" buttons would still synchronize "Value" and "Text" automatically.
Comments: ** Comment from web user: BoucherS **
NumericUpDowns have a "Value" and a "Text" properties.
When a digit is typed in the NumericUpDown, the "Value" is automatically synchronized with "Text".
User wants to wait for a "Enter" key press to synchronize the "Value" with "Text". Pressing "Up" or "Down" buttons would still synchronize "Value" and "Text" automatically.
Comments: ** Comment from web user: BoucherS **
This will be possible in v2.5.
A new boolean property "UpdateValueOnEnterKey" will be used.
If someone is typing text and UpdateValueOnEnterKey is True, the synchronization between "Value" and "Text" will only be done on a "Enter" KeyPress...or a LostFocus.