To reproduce: RadTextBox txtAction = new Telerik.WinControls.UI.RadTextBox(); txtAction.Dock = System.Windows.Forms.DockStyle.Fill; this.Controls.Add(txtAction); Workaround: void txtAction_Resize(object sender, EventArgs e) { txtAction.TextBoxElement.InvalidateMeasure(true); txtAction.TextBoxElement.UpdateLayout(); }
This seems like a general issue on several controls. We are also experiencing this on the RadGalleryElement. After adding an item, it is not visible, we use same workaround as for the textbox, invalidate and update and voila the item is visible. Please v