Posted 30 September 2021, 8:31 am EST
Hello!
In the c1TreeView the ENTER key is sett to go to the next node. Is there a way to turn this off?
Regards
Per
Forums Home / ComponentOne / WinForms Edition
Posted by: ronny on 30 September 2021, 8:31 am EST
Posted 30 September 2021, 8:31 am EST
Hello!
In the c1TreeView the ENTER key is sett to go to the next node. Is there a way to turn this off?
Regards
Per
Posted 1 October 2021, 3:25 am EST
Hello,
We are discussing this with the developers and will let you know as soon as we get the update from the devs.
[Internal Tracking ID: C1WIN-25787]
Regards,
Prabhat Sharma.
Posted 11 October 2021, 5:34 am EST
Any updates on this?
Regards
Per
Posted 11 October 2021, 5:41 am EST
Hello,
As per the developers, C1TreeView has the MoveDownByEnter property, but it’s protected.
As a Workaround, you can use this code:
c1TreeView1.GetType().GetProperty("MoveDownByEnter", BindingFlags.NonPublic | BindingFlags.Instance).SetValue(c1TreeView1, false);
Regards,
Prabhat Sharma.
Posted 11 October 2021, 5:47 am EST
Thank you, that worked