Unplanned
Last Updated: 30 Mar 2016 13:18 by ADMIN
ADMIN
Dimitar
Created on: 02 Jun 2015 12:04
Category: Editors
Type: Bug Report
0
FIX. RadTextBox - is not resized when it is anchored to the left and right and the form's WindowState is set to Maximized.
To reproduce:
- Add RadtextBox to a form and anchor it to the left and right.
- Set WindosState of the form to Maximized
- Start the application

Workaround
void RadForm1_Shown(object sender, EventArgs e)
{
    this.WindowState = FormWindowState.Maximized;
}
2 comments
ADMIN
Stefan
Posted on: 08 Jun 2015 08:10
Hi John,

The workaround provided should work with UserControl as well. Fix will be introduced in a future release.
John
Posted on: 04 Jun 2015 14:51
What about when the RadtextBox is on a user control, not a form.  The same issue occurs.  Is there a fix for this scenario?