/* * Created by SharpDevelop. * User: windows * Date: 23.02.2005 * Time: 13:38 * * To change this template use Tools | Options | Coding | Edit Standard Headers. */ using System; using System.Drawing; using System.Windows.Forms; namespace hash { /// /// Description of Form1. /// public class Form1 : System.Windows.Forms.Form { public static void Main(string[] args) { Application.Run(new Form1()); } public Form1() { } #region Windows Forms Designer generated code /// /// This method is required for Windows Forms designer support. /// Do not change the method contents inside the source code editor. The Forms designer might /// not be able to load this method if it was changed manually. /// private void InitializeComponent() { // // Form1 // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(292, 266); this.Text = "Form1"; this.Name = "Form1"; } #endregion } }