Unplanned
Last Updated: 12 Feb 2018 12:09 by ADMIN
ADMIN
Dimitar
Created on: 25 Sep 2017 05:30
Category:
Type: Bug Report
1
FIX. RadDataEntry - the bottom border of the text boxes inside the control is not visible with when using VisualStudio2012Light theme
Use attached project to reproduce.

Workaround:
foreach (RadPanel item in radDataEntry1.Controls[0].Controls)
{
    var textBox = item.Controls[0] as RadTextBox;
    if (textBox != null)
    {
        textBox.TextBoxElement.MaxSize = new Size(0, 20);
    }
}

or
this.radDataEntry1.ItemDefaultSize = new Size(200, 24);
Attached Files:
0 comments