Hi!
Is possibile put a radTextField into a RadMessageBoxForm, below MessageText?
Tks.
Maia.
1 Answer, 1 is accepted
0
Dimitar
Telerik team
answered on 19 Jun 2014, 08:47 AM
Hi Maia,
Thank you for writing.
You can add a text box to the RadMessageBox for with the following code:
RadTextBox textbox = new RadTextBox();
textbox.Text = "MyTextBox";
textbox.Location = new Point(10,50);
RadMessageBox.Instance.Controls.Add(textbox);
RadMessageBox.Instance.MinimumSize = new Size(500, 150);
RadMessageBox.Show("CustomMessageBox");
Please note that if you need complex form I would recommend you to create a custom form with the desired controls and layout.
Please let me know if there is something else I can help you with.
Regards,
Dimitar
Telerik
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.