我需要将文本编辑控件中的用户输入限制为 1-99。阅读此票https://www.devexpress.com/Support/Center/Question/Details/Q458791后,使用 RegEx 掩码来实现它。
<dxe:TextEdit Grid.Column="2" Text="{Binding FontSize , UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}" Grid.Row="1" VerticalAlignment="Center" MaskType="RegEx" MaskUseAsDisplayFormat="True" Mask="^[1-9]\d?$" EditValueChanged="TextEdit_EditValueChanged"/>
现在它也在输入区域 (^[1-9]\d?$) 中显示掩码字符串。尝试使用不同的 reg ex 组合。请帮忙。