Is there a property that I can set so the textbox doesn't shift that much when entering edit mode? It's not as annoying as when you only have a simple textbox, but it's very noticeable when you have a multiline display.
Hi,
Just FYI - the reason this happens is because of the differences between GDI and GDI+ drawing. When the textbox is in edit mode, it uses the inbox DotNet TextBox control, which is basically a wrapper around the Windows TextBox and therefore uses GDI. When it's not in edit mode, we handle the drawing using GDI+. So setting the TextRenderingMode to GDI will provide a consistent experience for text drawing.
You could also set:
Infragistics.Win.DrawUtility.UseGDIPlusTextRendering to false and this would affect all of the Infragistics controls in your application - as opposed to setting the TextRenderingMode on each control individually.
Hello,
I ma glad to here that you were able to vid solution for your issue.
Another option to resolve this might be if you set AlwayseIneditMore property to true, which stays in edit mode when it loses the input focus.
http://help.infragistics.com/Help/Doc/WinForms/2013.2/CLR4.0/html/Infragistics4.Win.UltraWinEditors.v13.2~Infragistics.Win.UltraWinEditors.TextEditorControlBase~AlwaysInEditMode.html
Thank you for using Infragistics components.
Disregard, setting the rendering mode to GDI seemed to solve my problem.