一种是在数据源限制输入,比如:
- public class MyClass
- {
- [Range(0, 99999)
- public int MyNumber { get; set; }
- }
复制代码
第二种就是设置TextBox的MaxLength,如下代码:
- <c1:DataGridTemplateColumn.CellEditingTemplate>
- <DataTemplate>
- <TextBox Text="{Binding Path=Description, Mode=TwoWay}"
- TextAlignment="Center"
- MaxLength="5" />
- </DataTemplate>
- </c1:DataGridTemplateColumn.CellEditingTemplate>
复制代码
可以限制输入。 |