禁用InputMan默认的快捷键
NET InputMan Ver:7.0在InputMan的Date和Number控件中,不设置任何快捷键的情况下,按下F4后默认能够弹出下拉列表,如何禁用F4快捷键? 介个简单,你把F4键指定成一个其他的Action,比如说Refresh即可。
以下为窗体设计器生成代码,供参考:
this.gcShortcut1.SetShortcuts(this.gcDateTime1, new GrapeCity.Win.Editors.ShortcutCollection(new System.Windows.Forms.Keys[] {
System.Windows.Forms.Keys.F4}, new object[] {
((object)(this.gcDateTime1))}, new string[] {
"Refresh"}));
页:
[1]