-1

The title says it all. I'm trying to disabled the undo function when called by the shortcut CTRL-Z in the Form Designer from Greatis Software

There is no documentation on the web site.

For those who used greatis Form Designer, I tried to listen to the key up / down / press of the container on which the design is made with no success. The Form Designer seems to catch those keys and handle them and then discard them. The events I listen to don't fire.

Someone as an idea ?

Thanks!

Fid
  • 568
  • 5
  • 13

1 Answers1

0

Greatis Form Designer processes only tab and arrows keys (see RootDesigner.cs file), all other keys are processed within native .Net designer.

Dmitry
  • 16
  • Thanks! It oriented me to find the real reason behind my problem, which wasn't Greatis at all. In fact the problem came from a shortcut defined in the toolbar. The shortcut was still effective event if the menu item wasn't shown in the toolbar (i used infragistics ToolbarManager) ... – Fid Jul 13 '16 at 21:04