// This Source Code is partially based on the source code provided by the .NET Foundation.
// ReSharper disable once CheckNamespace
namespace WPFluent.Controls;
///
/// Defines values that specify the input validation behavior of a when invalid input is
/// entered.
///
public enum NumberBoxValidationMode
{
///
/// Input validation is disabled.
///
InvalidInputOverwritten,
///
/// Invalid input is replaced by PlaceholderText text.
///
Disabled,
}