限制TreeView/ListView项目编辑字符
我有一个 TreeView 和一个列表视图控件,它们都支持编辑其项目节点,但我想将它们限制为最多 256 个字符,一种方法是验证 OnAfterLabelEdit 中字符串的长度,但我想要什么这样做使编辑框在达到 256 时停止接受字符。与
TextBox.Maxlength相同
I have a TreeView and a list view controls that both supports edit their item nodes, but I want to limit them to 256 characters max, one way to do it, is to validate the Length of the string in the OnAfterLabelEdit, but what I want to do it make the edit box stop accepting characters when it reaches 256. same as
TextBox.Maxlength
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与 TextBox 不同,TreeView/ListView 项目没有简单的方法可以做到这一点。您可以尝试 TVITEM 结构 或 这个。或者您可以捕获文本更改事件并验证...
There is no easy way to do that with TreeView/ListView items unlike with TextBoxes. You could either try TVITEM structure or this. Or you could capture the text changed event and validate...