限制用户在DevExpress的TextEdit中键入少于5个字符

时间:2018-10-21 19:18:04

标签: c# winforms devexpress

我想限制用户键入少于5个字符。我用Google搜索,解决方案是将private IssueToken getIssueToken(ResponseEntity<String> response) { System.out.println("Inside the method"); //this line won't print on the console HttpStatus statusCode = response.getStatusCode(); checkErrors(response); return GsonConvertor.getInstance().deserialize(response.getBody(), IssueToken.class); } 设置为maxLength,但是我使用的是textbox的{​​{1}},但它没有DevExpress。那我该怎么办呢?

编辑

TextEdit的{​​{1}}在Visual Studio属性的属性分支中有maxLength

2 个答案:

答案 0 :(得分:1)

我正在看Devexpress文档,它具有一个可以做到这一点的控件。我不知道您是使用WPF还是Windows窗体,或者您正在构建一个网站,尽管它是同一回事。 DevExpress文档不仅仅是一个好东西,它具有您需要通过简单搜索来了解的所有内容。

https://documentation.devexpress.com/WPF/6945/Controls-and-Libraries/Data-Editors/Common-Features/Masked-Input

答案 1 :(得分:0)