Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create MessageBox With TextBox In It [duplicate]

Tags:

c#

wpf

How can I create a messagebox with two textboxes inside of it so the user can type in information that I can save?

like image 201
Robert Avatar asked Dec 17 '22 20:12

Robert


1 Answers

Make a custom form and call MyForm.ShowDialog(), assuming you have the dialog results set up properly.

like image 164
Richard J. Ross III Avatar answered Dec 19 '22 11:12

Richard J. Ross III