WPF CurrencyTextBox -- Quick Reference
This skill documents core usage patterns and links to concise reference pages for formatting, validation, styling, and advanced features.
Quick Start
Add the Syncfusion WPF package and drop a CurrencyTextBox in XAML:
<syncfusion:CurrencyTextBox Width="200" Value="1234.56" MinValue="0" MaxValue="10000" />Bind in MVVM:
<syncfusion:CurrencyTextBox Value="{Binding Amount, UpdateSourceTrigger=PropertyChanged}" />References
- Getting started: references/getting-started.md
- Formatting & culture: references/formatting-culture.md
- Validation & restrictions: references/validation-restrictions.md
- Appearance & styling: references/appearance-styling.md
- Advanced features: references/advanced-features.md
- Step interval & scrolling: references/step-interval-scrolling.md
Notes
- Always use
Value(notText) to get/set the currency amount. - Format priority: dedicated properties > NumberFormat > Culture.
- Range adorner requires both MinValue and MaxValue to be set.
- Watermark requires UseNullOption = true.