CurrencyTextBox 1.1.1
See the version list below for details.
dotnet add package CurrencyTextBox --version 1.1.1
NuGet\Install-Package CurrencyTextBox -Version 1.1.1
<PackageReference Include="CurrencyTextBox" Version="1.1.1" />
paket add CurrencyTextBox --version 1.1.1
#r "nuget: CurrencyTextBox, 1.1.1"
// Install CurrencyTextBox as a Cake Addin #addin nuget:?package=CurrencyTextBox&version=1.1.1 // Install CurrencyTextBox as a Cake Tool #tool nuget:?package=CurrencyTextBox&version=1.1.1
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
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.
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