Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在用户在 vb.net 的文本框中输入文本/数据后触发文本框的 textchanged 事件。但是一旦用户在文本框中输入第一个单词,该事件就会被触发。
有什么办法可以解决这个问题吗?我尝试谷歌搜索但没有得到满意的解决方案..
当 TextBox 发生任何变化时触发TextChanged事件。如果您想在用户完成后调用某些内容,请尝试使用TextBox 的LostFocus事件,该事件将在用户离开文本框的焦点时触发。