I want to create a modeless dialog box with below code. However, the form seems not responding after creation. I guess the message loop may be blocked if I create it in this way. Anyone knows how to create it in the correct way?
class Program
{
static void Main(string[] args)
{
Form form = new Form();
form.Show();
Console.ReadLine();
}
}
Displaying Modal and Modeless Windows Forms:
To display a form as a modeless dialog box Call the Show method:
The following example shows how to display an About dialog box in modeless format.
To display a form as a modal dialog box Call the ShowDialog method.
The following example shows how to display a dialog box modally.
See: Displaying Modal and Modeless Windows Forms
See the following console application code:
you may use another thread, but you must wait for that thread to join or abort it:
like this working sample code: