#region Using directives using System; using System.Drawing; using System.Collections; using System.Windows.Forms; using System.Data; #endregion namespace $safeprojectname$ { /// /// Summary description for form. /// public class Form1 : System.Windows.Forms.Form { /// /// Main menu for the form. /// private System.Windows.Forms.MainMenu mainMenu1; public Form1() { InitializeComponent(); } /// /// Clean up any resources being used. /// protected override void Dispose(bool disposing) { base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.mainMenu1 = new System.Windows.Forms.MainMenu(); this.Menu = this.mainMenu1; this.Text = "Form1"; } #endregion /// /// The main entry point for the application. /// static void Main() { Application.Run(new Form1()); } } }