NHSE/NHSE.WinForms/Main.Designer.cs
Kurt 0d979a8b7b Add injection hotkeys to main window
no save file required
2020-04-08 08:59:04 -07:00

71 lines
2.5 KiB
C#

namespace NHSE.WinForms
{
public partial class Main
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
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;
}
}