An abstract base class that provides functionality for displaying or editing values.
The following code creates different editors and sets some of the commonly used settings.
<igEditors:XamTextEditor x:Name="textEditor6" Value="0" ValueType="{x:Type system:Double}">
<igEditors:XamTextEditor.ValueConstraint>
<igEditors:ValueConstraint MinInclusive="0" MaxInclusive="100" Nullable="False" />
</igEditors:XamTextEditor.ValueConstraint>
</igEditors:XamTextEditor>
<igEditors:XamMaskedEditor x:Name="maskedEditor2"
ValueType="{x:Type system:String}"
Mask="###-##-####"
DataMode="Raw"
DisplayMode="IncludeBoth"
>
<igEditors:XamMaskedEditor.ValueConstraint>
<igEditors:ValueConstraint Nullable="True" />
</igEditors:XamMaskedEditor.ValueConstraint>
</igEditors:XamMaskedEditor>
<igEditors:XamCurrencyEditor x:Name="currencyEditor1" Value="10.5" />
<igEditors:XamNumericEditor x:Name="numericEditor1" Value="0" ValueType="{x:Type system:Byte}" />
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2