/* * Created by SharpDevelop. * User: Johannes * Date: 26.02.2005 * Time: 10:05 * * To change this template use Tools | Options | Coding | Edit Standard Headers. */ using System; using System.Drawing; using System.Windows.Forms; namespace FTPUpload { /// /// Description of MainForm. /// public class MainForm : System.Windows.Forms.Form { public MainForm() { InitializeComponent(); } [STAThread] public static void Main(string[] args) { Application.Run(new MainForm()); } #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 = "MainForm"; this.Name = "MainForm"; } #endregion } }