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.
UltraTextEditor 是否存在仅在控件失去焦点且其文本已被修改时触发的事件?
例如,Ultragrids 有一个名为 AfterCellUpdate 的东西,我正在为 textEditor 寻找类似的东西......我在这里遗漏了什么吗?
有两个事件称为:
private void UltraTextEditor_AfterExitEditMode(object sender, EventArgs e) private void UltraTextEditor_AfterEnterEditMode(object sender, EventArgs e)
当AfterExitEditMode控件退出编辑模式时触发,此事件可以与标准ValueChanged事件一起使用以监视控件上的编辑。
AfterExitEditMode
ValueChanged
如您所见,这些事件具有所有相同的签名,因此可以由相同的事件处理程序处理。