Mega Code Archive
Categories
/
C# Tutorial
/
GUI Windows Forms
Set Form Visible properties
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(); } }