更改快捷键行为方法如下:
InputMap map = this.fpSpread1.GetInputMap(InputMapMode.WhenFocused);
map.Put(new Keystroke(Keys.Enter, Keys.None), FarPoint.Win.Spread.SpreadActions.None);
复制代码
用这段代码修改了快捷键之后就能在
protected override bool ProcessCmdKey(ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData)
中捕捉到回车事件了。
谢谢! |