This is a migrated thread and some comments may be shown as answers.

radmessagebox

1 Answer 111 Views
MessageBox
This is a migrated thread and some comments may be shown as answers.
Flavio
Top achievements
Rank 1
Flavio asked on 16 Jun 2014, 04:46 PM
Hi!
Is possibile put a radTextField into a RadMessageBoxForm, below MessageText?
Tks.
Maia.

1 Answer, 1 is accepted

Sort by
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.
 
Tags
MessageBox
Asked by
Flavio
Top achievements
Rank 1
Answers by
Dimitar
Telerik team
Share this question
or