MaskedTextBox 最小/最大长度
我有一个蒙版文本框,需要在其上设置最小/最大长度。当满足这些条件时,按钮将被启用。
我正在考虑处理 TextChanged 事件来确定输入文本的长度并设置按钮启用值。
有更好的方法吗?
btnOK.Enabled = txtDataEntry.Text.Length >= MinDataLength && txtDataEntry.Text.Length <= MaxDataLength;
I have a masked textbox with the need to have a min/max length set on them. When these conditions are met a button becomes enabled.
I was thinking of handling the TextChanged event to determine the length of the entered text and set the buttons enabled value.
Is there a better approach?
btnOK.Enabled = txtDataEntry.Text.Length >= MinDataLength && txtDataEntry.Text.Length <= MaxDataLength;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
哪种方法可能比您建议的更简单?
Which approach could be even simpler than what you are suggesting?
IMO TextChanged 事件是处理此功能条件的好地方。
更新
在 KeyPress 事件中执行此操作,如下所示:
IMO TextChanged event is good place to handle this feature condition.
Update
Do it in KeyPress event like this:
// 在你的 texbox 验证事件中
// At your texbox valdating Event