限制TreeView/ListView项目编辑字符

发布于 2024-12-05 13:06:06 字数 155 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

開玄 2024-12-12 13:06:06

与 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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文