Unplanned
Last Updated: 27 Jun 2016 11:31 by ADMIN
ADMIN
Dimitar
Created on: 07 Jun 2016 05:52
Category: Editors
Type: Bug Report
0
FIX. RadMaskedEditBox - the height of the underlying text box item is not changed when the size of the entire controls is changed.
To reproduce:
- Add RadMaskedEditBox to a form.
- Set AutoSize to false.
- Set the height of the control to 30.

Workaround:

radMaskedEditBox1.AutoSize = false;
radMaskedEditBox1.MaskedEditBoxElement.TextBoxItem.MinSize = new Size(0, 30);
0 comments