NHSE/NHSE.WinForms/Main.Designer.cs
Kurt 74f6157fa3 Change folderbrowser to openfile, select main instead
- Open file => main.dat will load the parent folder
- Allow dropping of main.dat (loads the parent folder)
- Shift clicking still behaves the same way
- Handle command line arguments to auto-load savedata from arg indexes >=1

Closes #37 ; unsure on licensing & mono compatibility, less dependencies
2020-04-04 16:37:54 -07:00

69 lines
2.4 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.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.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button B_Open;
}
}