CurrencyTextBox 1.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package CurrencyTextBox --version 1.3.0
NuGet\Install-Package CurrencyTextBox -Version 1.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CurrencyTextBox" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CurrencyTextBox --version 1.3.0
#r "nuget: CurrencyTextBox, 1.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CurrencyTextBox as a Cake Addin
#addin nuget:?package=CurrencyTextBox&version=1.3.0

// Install CurrencyTextBox as a Cake Tool
#tool nuget:?package=CurrencyTextBox&version=1.3.0

FRAMEWORK 4.5

A WPF TextBox for entering a currency value, similar to how a cash register works.
Numbers typed are pushed in from the right. If we start with the default value 0.00, and start typing the numbers 123, the value updates as such: 0.00 => 0.01 => 0.12 => 1.23
You can set Maximum and Minimum value.
If we press the backspace key, the numbers are shifted right: 1.23 => 0.12 => 0.01 => 0.00
If we press the delete key, the value is reset to 0.00.
If we press the minus key, the value becomes negative.
If we press down/up key, the value are increase/decrease
Support stringformat C to C6.
Support stringformat N to N6.
Copy and paste decimal value.
Undo/Redo value with default ctrl+z / ctrl+y
This control's template can be customized to change the appearance.
Supports data validation.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.2 5,603 12/24/2019
1.4.3 8,832 6/23/2017
1.4.2 1,561 5/4/2017
1.4.1 1,697 11/26/2016
1.4.0 2,536 2/28/2016
1.3.1 1,744 2/16/2016
1.3.0 1,805 2/15/2016
1.2.0 1,908 2/11/2016
1.1.1 1,687 2/10/2016
1.1.0 2,151 2/9/2016

New in version 1.3.0
- Add support of Undolimit
- Add functionality ADD/REMOVE popup (Enter Key when CanShowAddPanel = true)

New in version 1.2.0
- Add support of numeric value (Stringformat N to N6)

New in version 1.1.1
- Validate MinimumValue / MaximumValue dependency properties
- Validate StringFormat dependency property

New in version 1.1.0
- Add support of Undo/Redo
- Add Copy/Paste