FIX. RadTextBox - incorrect height of the control after maximizing a minimized form having a text box with anchors Left | Top | Right in the Office2010Blue theme
How to reproduce: check the attached project and video
Workaround: set a minimum size to the control
public partial class RadForm1 : RadForm
{
public RadForm1()
{
InitializeComponent();
this.radTextBox1.MinimumSize = new Size(0, 20);
}
}