i\'ve changed a WinForms TextBox control to have no border.
TextBox
When i do the bottom pixel row of text in the box is being cut off.
Top:>
The AutoSize property is there, just inherit from TextBox and you can get to the property:
AutoSize
public class TextBoxEx : TextBox { public TextBoxEx() { base.AutoSize = false; } }