CurrencyTextBox 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package CurrencyTextBox --version 1.1.0
                    
NuGet\Install-Package CurrencyTextBox -Version 1.1.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.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CurrencyTextBox" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="CurrencyTextBox" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CurrencyTextBox --version 1.1.0
                    
#r "nuget: CurrencyTextBox, 1.1.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.
#addin nuget:?package=CurrencyTextBox&version=1.1.0
                    
Install CurrencyTextBox as a Cake Addin
#tool nuget:?package=CurrencyTextBox&version=1.1.0
                    
Install CurrencyTextBox as a Cake Tool

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.

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 6,802 12/24/2019
1.4.3 9,623 6/23/2017
1.4.2 1,739 5/4/2017
1.4.1 1,811 11/26/2016
1.4.0 2,794 2/28/2016
1.3.1 1,950 2/16/2016
1.3.0 2,057 2/15/2016
1.2.0 2,201 2/11/2016
1.1.1 1,888 2/10/2016
1.1.0 2,586 2/9/2016

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