Hi team,
we are using infragistics windows forms v5.2 in our application, keyboard arrow key events are not working for under user control, but the same code under form is working fine. keyboard arrow keys not firing or selecting dropdown values in user control, but same works in form. Is there any property need to be added to make this work around.
Thanks,
Raj
Hello Raj,
Please clarify which controls are giving you issues. Have you tested against a more recent version of ours to compare to? If so, what were your results? We don't support 5.2 so your best bet is to see if our latest version has similar issues.
Sorry the issue is not with the user control. the issue is because of windows menu control. because of MDI form i hope it is not allowing keyboard arrow keys to work. please let me know if this issue was already reported or if there is any solution
Please provide a complete and isolated sample project demonstrating the behavior. There is no known behavior regarding this. Also your account has an active subscription with a newer 18.2 license key.
Let me know if you have any questions.
Great job finding a fix! Let us know if you have any additional questions regarding this matter.
Hi Michael,
The issue got fixed, this initialization line shown below if it come under “DockWithinContainer” property, then we are able to navigate using arrow keys. Though not sure why, it worked. (earlier beginInit line was above dockwithincontainer property).
this.ultraToolbarsManager1.DesignerFlags = 1;
this.ultraToolbarsManager1.DockWithinContainer = this;
this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();