Mega Code Archive

 
Categories / C# by API / System Windows Forms
 

Form Visible

using System.Windows.Forms;     class RunFormBadly {      public static void Main()      {           Form form = new Form();               form.Text = "Not a Good Idea...";           form.Visible = true;               Application.Run();      } }