It seems after installing the Intellisense sample I am no longer able to use the enter key in an ExpressionTextBox. Is there a property I can use to turn it back on?
Thank you,
John
It seems after installing the Intellisense sample I am no longer able to use the enter key in an ExpressionTextBox. Is there a property I can use to turn it back on?
Thank you,
John
Hi John,
Sorry but I'm not sure what you mean by ExpressionTextBox. Can you give some more detail on the problem and how to reproduce it? Thanks!
I'm sorry I wasn't clear... I am using the ActiPro controls in a Windows Workflow 4.5 Rehosted Designer to enable Intellisense. The WPF control used in the designer [for all workflow activities] is called an ExpressionTextBox. The Intellisense works like a champ - but unfortunately the carriage return is no longer recognized. Is there a property, or something I can implement in the Intellisense project to get this behavior back? [I am using the Intelliense project provided on the ActiPro website].
Thank you,
John
Hi John,
Ahh.. it's because the SyntaxEditor is set up as single-line mode per this line in the Instance.cs file:
editor.IsMultiLine = false;
If you remove that then it will render like a larger multi-line editor with scrollbars.
That did it! Thank you!
John
Please log in to a validated account to post comments.