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.
我设计了一个软键盘并以编程方式更改文本框文本,例如
myKeypad.getControl.Text += "Char";
但文本框 textchanged 事件不会触发。我怎么解决这个问题?我们是否可以创建自定义 textChanged 和 KeyPressed 事件,这些事件可以通过以编程方式更改文本或软键盘按键来触发?
它应该被触发。
来自 MSDN Control.TextChanged 事件:
如果通过编程修改或用户交互更改了 Text 属性,则会引发此事件。
你在哪里添加事件处理程序?