摘要:
void gridView1_MouseDown(object sender, MouseEventArgs e) { GridHitInfo info; Point pt = winGridView1.gridView1.GridControl.PointToClient(Control.Mous 阅读全文
摘要:
AutoComplete = true; 阅读全文
摘要:
ITempFrmDeleagte sendtempfrm = tableForm as ITempFrmDeleagte; if (sendtempfrm != null) { sendtempfrm.OpenModifyFrm += mainDialog.sendtempfrm_OpenModif 阅读全文
摘要:
true 表示跳过控件的默认处理;false 表示还将该事件传递给默认控件处理程序。 下面的示例确定用户是否按了非数值键,如果是,则 KeyPress 使用属性取消事件 Handled // Boolean flag used to determine when a character other 阅读全文
摘要:
问题:当新建一个窗体时,添加KeyDown事件后,会正常处理;但是当添加有控件时,比如Button,TextBox,就不会触发窗体的KeyDown事件,也没有调用KeyDown事件的处理程序。 原因:由于窗体中添加了控件,于是焦点就在其中一个控件上,如果我们要处理的事件窗体和获取焦点的控件都同时拥有 阅读全文