Skip to content

Instantly share code, notes, and snippets.

@markheath
Created September 19, 2016 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markheath/3ab64f1b3fb89bab71eba2f99f022141 to your computer and use it in GitHub Desktop.
Save markheath/3ab64f1b3fb89bab71eba2f99f022141 to your computer and use it in GitHub Desktop.
WinForms show a modeless message dialog
var f = new Form();
var b = new Button();
b.Text = "Show message";
b.AutoSize = true;
f.Controls.Add(b);
b.Click += (s, e) =>
{
var p = new Form();
p.Text = "Hello";
p.Show(f);
};
f.ShowDialog();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment