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:>
This seems to do the trick:
public Form2() { InitializeComponent(); textBox1.Multiline = true; textBox1.MinimumSize = new Size(0, 30); textBox1.Size = new Size(textBox1.Size.Width, 30); textBox1.Multiline = false; }