namespace NHSE.WinForms { public partial class Main { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } 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.B_Open = new System.Windows.Forms.Button(); this.SuspendLayout(); // // B_Open // this.B_Open.Dock = System.Windows.Forms.DockStyle.Fill; this.B_Open.Location = new System.Drawing.Point(0, 0); this.B_Open.Name = "B_Open"; this.B_Open.Size = new System.Drawing.Size(306, 121); this.B_Open.TabIndex = 0; this.B_Open.Text = "Open main.dat\r\n\r\nOr...\r\n\r\nDrag&&Drop folder here!"; this.B_Open.UseVisualStyleBackColor = true; this.B_Open.Click += new System.EventHandler(this.Menu_Open); // // Main // this.AllowDrop = true; this.ClientSize = new System.Drawing.Size(306, 121); this.Controls.Add(this.B_Open); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Icon = global::NHSE.WinForms.Properties.Resources.icon; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "Main"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "NHSE"; this.DragDrop += new System.Windows.Forms.DragEventHandler(this.Main_DragDrop); this.DragEnter += new System.Windows.Forms.DragEventHandler(this.Main_DragEnter); this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Main_KeyDown); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button B_Open; } }