Application.Run : Application Event « Development Class « C# / C Sharp
- C# / C Sharp
- Development Class
- Application Event
Application.Run
using System.Windows.Forms;
class RunFormBetter
{
public static void Main()
{
Form form = new Form();
form.Text = "My Very Own Form";
Application.Run(form);
}
}
Related examples in the same category