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);