Completed
Last Updated: 13 Dec 2017 13:05 by ADMIN
ADMIN
Hristo
Created on: 11 Dec 2017 08:05
Category: Editors
Type: Bug Report
1
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);
     }
 }
0 comments